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

@@ -78,7 +78,7 @@ export function DataExportTab() {
userId: user.id,
action: 'load_statistics'
});
} catch (error) {
} catch (error: unknown) {
logger.error('Failed to load statistics', {
userId: user.id,
action: 'load_statistics',
@@ -131,7 +131,7 @@ export function DataExportTab() {
action: 'load_activity_log',
count: activityData.length
});
} catch (error) {
} catch (error: unknown) {
logger.error('Error loading activity log', {
userId: user.id,
action: 'load_activity_log',
@@ -230,7 +230,7 @@ export function DataExportTab() {
// Refresh activity log to show the export action
await loadRecentActivity();
} catch (error) {
} catch (error: unknown) {
logger.error('Data export failed', {
userId: user.id,
action: 'export_data',