fix: cf is very annoying

This commit is contained in:
2026-02-20 19:13:06 +10:30
parent 2faef2ae8d
commit 01f5e8f61d
2 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -24,7 +24,8 @@ export type CloudAuthState = {
user: CloudUser | null;
};
type Listener = (_: CloudAuthState) => void;
/** Callback invoked when auth state changes */
type Listener = { (state: CloudAuthState): void };
class CloudAuthService {
private static instance: CloudAuthService;