Skip to content

Commit

Permalink
fix(oidc): storage empty update message (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Feb 3, 2024
1 parent 31c2545 commit 7a5d32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/oidc-client/src/initSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const initSession = (configurationName, storage = sessionStorage) => {
const dataString = storage[`oidc.login.${configurationName}`];

if(!dataString){
console.warn(`storage[oidc.login.${configurationName}] is empty`);
console.warn(`storage[oidc.login.${configurationName}] is empty, you should have an bad OIDC or code configuration somewhere.`);
return null;
}

Expand Down

0 comments on commit 7a5d32c

Please sign in to comment.