We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7338321 commit 958f4edCopy full SHA for 958f4ed
lib/sessionManager/stores/localStorage.ts
@@ -12,7 +12,9 @@ export class LocalStorage<V extends string = StorageKeys>
12
{
13
constructor() {
14
super();
15
- console.warn("LocalStorage store should not be used in production");
+ if (storageSettings.useInsecureForRefreshToken) {
16
+ console.warn("LocalStorage store should not be used in production");
17
+ }
18
}
19
20
private internalItems: Set<V | StorageKeys> = new Set<V>();
0 commit comments