fix(pr#67): prevents clan tag from wrapping

This commit is contained in:
cnrad
2024-11-14 01:44:19 -05:00
parent e8ded2615b
commit 802a7299cb
3 changed files with 4 additions and 7 deletions

View File

@@ -24,11 +24,8 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
{/* Supress Hydration Warning that caused by some extensions such as Colorzilla, do not remove this. */}
<body className={`${poppins.className} antialiased`} suppressHydrationWarning>
{children}
</body>
<html lang="en">
<body className={`${poppins.className} antialiased`}>{children}</body>
</html>
);
}