Enable admin-only stats and update subscriptions

Implement plan to fix database RPCs by migrating to photos table, update hooks to enable only on admin pages, switch real-time subscriptions to the photos table, and apply to remaining forms. Also disable analytics in development.
This commit is contained in:
gpt-engineer-app[bot]
2025-11-11 23:49:56 +00:00
parent f4300de738
commit 2468d3cc18
4 changed files with 290 additions and 3 deletions

View File

@@ -29,6 +29,11 @@ class AnalyticsErrorBoundary extends Component<
}
export function AnalyticsWrapper() {
// Disable analytics in development to reduce console noise
if (import.meta.env.DEV) {
return null;
}
return (
<AnalyticsErrorBoundary>
<Analytics />