feat: Execute full production readiness plan

This commit is contained in:
gpt-engineer-app[bot]
2025-10-20 17:43:21 +00:00
parent 4cc07be189
commit 53b2497e30
10 changed files with 55 additions and 32 deletions

View File

@@ -54,7 +54,7 @@ export function SecurityTab() {
// Check if user has email/password auth
const hasEmailProvider = fetchedIdentities.some(i => i.provider === 'email');
setHasPassword(hasEmailProvider);
} catch (error) {
} catch (error: unknown) {
logger.error('Failed to load identities', {
userId: user?.id,
action: 'load_identities',
@@ -78,7 +78,7 @@ export function SecurityTab() {
} else {
handleSuccess('Redirecting...', `Connecting your ${provider} account...`);
}
} catch (error) {
} catch (error: unknown) {
handleError(error, { action: `Connect ${provider} account` });
}
};
@@ -156,7 +156,7 @@ export function SecurityTab() {
}
setSessions((data as AuthSession[]) || []);
} catch (error) {
} catch (error: unknown) {
logger.error('Failed to fetch sessions', {
userId: user.id,
action: 'fetch_sessions',