fix(cleanup, front): cleanup unrequired dependencies, fix some front-end errors

This commit is contained in:
Hexagonn
2024-11-13 07:09:35 +00:00
committed by GitHub
parent 4a9c696be4
commit 14001fd55f
3 changed files with 57 additions and 308 deletions

View File

@@ -24,8 +24,11 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${poppins.className} antialiased`}>{children}</body>
<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>
);
}