fix: PIN survey caused faulty layout due to background (#1826)

This commit is contained in:
Johannes
2023-12-22 15:39:16 -06:00
committed by GitHub
parent 6ac48a26bb
commit 82f916d86b
+1 -1
View File
@@ -13,7 +13,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className="flex h-screen flex-col bg-slate-50">{children}</body>
<body className="flex h-screen flex-col">{children}</body>
</html>
);
}