We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04429ad commit b7d5bd3Copy full SHA for b7d5bd3
apps/web-roo-code/src/components/providers/google-analytics-provider.tsx
@@ -37,7 +37,8 @@ export function GoogleAnalyticsProvider({ children }: { children: React.ReactNod
37
})
38
39
return unsubscribe
40
- }, [shouldLoad])
+ // eslint-disable-next-line react-hooks/exhaustive-deps -- shouldLoad intentionally omitted to prevent re-initialization loop
41
+ }, [])
42
43
const initializeConsentDefaults = () => {
44
// Set up consent defaults before gtag loads (Consent Mode v2 requirement)
0 commit comments