This commit is contained in:
Bilal Godil 2026-02-12 10:45:23 -08:00
parent 6e42342ebe
commit 659c561a14
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {
<head>
</head>
<body className="flex flex-col min-h-screen" suppressHydrationWarning>
<StackProvider app={stackServerApp} analytics={{ replays: { enabled: true, maskAllInputs: false }}}>
<StackProvider app={stackServerApp} analytics={{ replays: { enabled: true, maskAllInputs: false } }}>
<StackTheme>
<RootProvider
search={{

View File

@ -24,7 +24,7 @@ export function StackProviderClient(props: {
return (
<StackContext.Provider value={{ app }}>
{props.analytics?.replays?.enabled === true ? <Suspense fallback={null}><StackAnalyticsInternal replayOptions={props.analytics?.replays} /></Suspense> : null}
{props.analytics?.replays?.enabled === true ? <Suspense fallback={null}><StackAnalyticsInternal replayOptions={props.analytics.replays} /></Suspense> : null}
{props.children}
</StackContext.Provider>
);