aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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() {