mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-26 13:16:42 +00:00
fix(cleanup, front): cleanup unrequired dependencies, fix some front-end errors
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user