fix and update

This commit is contained in:
lendry
2026-06-29 20:05:57 +03:00
parent 115dc4e829
commit 8bbaf8b343
3 changed files with 52 additions and 10 deletions

View File

@@ -160,7 +160,9 @@ export function AuthProvider({ children }: { children: React.ReactNode }) {
setHasStoredSession(true);
clearPinLock();
if (auth.pinVerified !== false) {
void syncFedcmSession(auth.accessToken);
window.setTimeout(() => {
void syncFedcmSession(auth.accessToken);
}, 300);
}
},
[clearPinLock]