Skip to content
Snippets Groups Projects
Commit acb95e49 authored by Tifenn Guillas's avatar Tifenn Guillas
Browse files

Fix bug compilation

parent 2bad7c04
No related branches found
No related tags found
2 merge requests!169Develop,!165Fix bug compilation
......@@ -105,7 +105,7 @@ export class AuthEffects {
parseJWTAction$ = this.actions$.pipe(
ofType(authActions.PARSE_JWT),
switchMap((action: authActions.ParseJwtAction) => {
const jwt = jwt_decode(action.payload);
const jwt: any = jwt_decode(action.payload);
if (environment.ssoName === 'auth0') {
return of({ type: '[No Action] ' + authActions.PARSE_JWT });
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment