aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui
diff options
context:
space:
mode:
authorNatsuu <natsukawa247@outlook.com>2026-01-14 03:48:55 +0000
committerNatsuu <natsukawa247@outlook.com>2026-01-14 03:48:55 +0000
commit956b15693ebe52a75d6b27c59bd14b47764d0110 (patch)
tree2948b83f10bd9f3a2b5a34226e6c6799c6c83404 /ui
parentcaeec0304d0f6c592b6ce24d8c6c932eea6a5225 (diff)
downloadDropOut-956b15693ebe52a75d6b27c59bd14b47764d0110.tar.gz
DropOut-956b15693ebe52a75d6b27c59bd14b47764d0110.zip
chore: specify type for pollInterval in AuthState class
Diffstat (limited to 'ui')
-rw-r--r--ui/src/stores/auth.svelte.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/stores/auth.svelte.ts b/ui/src/stores/auth.svelte.ts
index 9df8835..3d58245 100644
--- a/ui/src/stores/auth.svelte.ts
+++ b/ui/src/stores/auth.svelte.ts
@@ -12,7 +12,7 @@ export class AuthState {
msLoginLoading = $state(false);
msLoginStatus = $state("Waiting for authorization...");
- private pollInterval: any;
+ private pollInterval: ReturnType<typeof setInterval> | null = null;
private isPollingRequestActive = false;
async checkAccount() {