Fix remaining catch blocks

This commit is contained in:
gpt-engineer-app[bot]
2025-10-21 17:08:24 +00:00
parent e9ae019285
commit 81fccdc4d0
10 changed files with 112 additions and 56 deletions

View File

@@ -318,7 +318,7 @@ export async function signOutUser(): Promise<AuthServiceResponse> {
clearAllAuthFlags();
return { success: true };
} catch (error) {
} catch (error: unknown) {
return {
success: false,
error: error instanceof Error ? error.message : 'Unknown error',