File tree 2 files changed +1
-6
lines changed
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const oidcClientAuth: ClientAuth = () => {
6
6
// equivalent function for token_endpoint_auth_method: 'none'
7
7
} ;
8
8
9
- export const shouldAllowIdpHttpRequest = ( ) => __UI_VERSION__ === 'development' ;
9
+ export const shouldAllowIdpHttpRequest = ( ) => true ;
10
10
11
11
export const getOIDCScopes = ( userOIDCConfig : OIDCConfig , idp : AuthorizationServer ) => {
12
12
const scopes = [ ...userOIDCConfig . scopes ] ;
Original file line number Diff line number Diff line change @@ -103,11 +103,6 @@ export const TokenRenew = () => {
103
103
onLogin ( result . id_token , result . refresh_token ) ;
104
104
navigate ( searchParams . get ( redirectToQueryParam ) || paths . home ) ;
105
105
} catch ( err ) {
106
- notification . error ( {
107
- message : `OIDC: ${ JSON . stringify ( err ) } ` ,
108
- placement : 'bottomRight'
109
- } ) ;
110
-
111
106
logout ( ) ;
112
107
navigate ( paths . login ) ;
113
108
}
You can’t perform that action at this time.
0 commit comments