dify/web/app/components/base/analytics-consent/console-analytics-runtime.tsx
Coding On Star c6ca395042
fix(web): make registration tracking consent-safe and retryable (#41365)
Co-authored-by: CodingOnStar <hanxujiang@dify.com>
2026-08-31 03:39:37 +00:00

18 lines
566 B
TypeScript

'use client'
import AmplitudeProvider from '@/app/components/base/amplitude'
import { RegistrationConsentCoordinator } from '@/app/components/base/amplitude/registration-consent-coordinator'
import ExternalAttributionRecorder from '@/app/components/external-attribution-recorder'
import { CookieYesConsentBridge } from './cookieyes-consent-bridge'
export function ConsoleAnalyticsRuntime() {
return (
<>
<CookieYesConsentBridge />
<AmplitudeProvider />
<RegistrationConsentCoordinator />
<ExternalAttributionRecorder />
</>
)
}