Fixed docker deploments, moved files to _folders in dispatch app
This commit is contained in:
@@ -13,7 +13,7 @@ const geistMono = Geist_Mono({
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default async ({
|
||||
const RootLayout = async ({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
@@ -23,12 +23,14 @@ export default async ({
|
||||
return (
|
||||
<html lang="en">
|
||||
<NextAuthSessionProvider session={session}>
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
>
|
||||
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
</body>
|
||||
</NextAuthSessionProvider>
|
||||
</html>
|
||||
);
|
||||
};
|
||||
|
||||
RootLayout.displayName = "RootLayout";
|
||||
|
||||
export default RootLayout;
|
||||
|
||||
Reference in New Issue
Block a user