We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19b5f96 commit b437cacCopy full SHA for b437cac
lib/sessionManager/stores/expoSecureStore.ts
@@ -7,7 +7,6 @@ let expoSecureStore: typeof import("expo-secure-store") | undefined = undefined;
7
async function waitForExpoSecureStore() {
8
let tries = 0;
9
while (!expoSecureStore && tries < 20) {
10
- console.log('waiting');
11
await new Promise((resolve) => setTimeout(resolve, 100));
12
tries++;
13
}
0 commit comments