mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
fix lint
This commit is contained in:
parent
6e42342ebe
commit
659c561a14
@ -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={{
|
||||
|
||||
@ -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>
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user