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

@@ -39,7 +39,7 @@ export async function trackPageView(
entity_id: entityId,
session_hash: getSessionHash()
});
} catch (error) {
} catch (error: unknown) {
// Fail silently - don't break the page if tracking fails
logger.error('Failed to track page view', { entityType, entityId });
}