Skip to content

Commit b572ca0

Browse files
committed
Hide "No state in response" OIDC error
1 parent 19888ef commit b572ca0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/ConnectForm.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ export default {
193193
try {
194194
await OidcProvider.signinCallback();
195195
} catch (error) {
196-
Utils.exception(this, error);
196+
if (error instanceof Error && error.message !== "No state in response") {
197+
Utils.exception(this, error);
198+
}
197199
}
198200
},
199201
mounted() {

0 commit comments

Comments
 (0)