Refactor: Update type safety status

This commit is contained in:
gpt-engineer-app[bot]
2025-10-21 17:19:19 +00:00
parent 81fccdc4d0
commit e580f1f4b4
21 changed files with 55 additions and 49 deletions

View File

@@ -61,7 +61,7 @@ function AuthProviderComponent({ children }: { children: React.ReactNode }) {
}
return true;
} catch (error) {
} catch (error: unknown) {
authError('[Auth] Session verification error:', error);
return false;
}
@@ -165,7 +165,7 @@ function AuthProviderComponent({ children }: { children: React.ReactNode }) {
},
});
}
} catch (error) {
} catch (error: unknown) {
authError('Error updating Novu after email confirmation:', error);
} finally {
novuUpdateTimeoutRef.current = null;