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

@@ -109,7 +109,7 @@ export function LocationTab() {
action: 'fetch_parks',
count: validatedParks.length
});
} catch (error) {
} catch (error: unknown) {
logger.error('Error fetching parks', {
userId: user.id,
action: 'fetch_parks',
@@ -152,7 +152,7 @@ export function LocationTab() {
userId: user.id,
action: 'fetch_accessibility_preferences'
});
} catch (error) {
} catch (error: unknown) {
logger.error('Error fetching accessibility preferences', {
userId: user.id,
action: 'fetch_accessibility_preferences',
@@ -255,7 +255,7 @@ export function LocationTab() {
'Settings saved',
'Your location, personal information, accessibility, and unit preferences have been updated.'
);
} catch (error) {
} catch (error: unknown) {
logger.error('Error saving location settings', {
userId: user.id,
action: 'save_location_settings',