diff options
Diffstat (limited to 'apps/web/app/layout.tsx')
| -rw-r--r-- | apps/web/app/layout.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index 6ec9c3e4..395d7297 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -10,6 +10,8 @@ import Providers from "@/lib/providers"; import { getServerAuthSession } from "@/server/auth"; import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; +import { clientConfig } from "@hoarder/shared/config"; + const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { @@ -42,7 +44,7 @@ export default async function RootLayout({ return ( <html lang="en"> <body className={inter.className}> - <Providers session={session}> + <Providers session={session} clientConfig={clientConfig}> {children} <ReactQueryDevtools initialIsOpen={false} /> </Providers> |
