From b40d7bcf045deb72466d938dc4cf8ed21e0087ba Mon Sep 17 00:00:00 2001 From: codebanditssss Date: Wed, 3 Jun 2026 22:15:52 +0530 Subject: [PATCH] fix: suppress hydration warning on html for theme class --- frontend/src/landing/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/landing/app/layout.tsx b/frontend/src/landing/app/layout.tsx index 61cdd31c8..38b586748 100644 --- a/frontend/src/landing/app/layout.tsx +++ b/frontend/src/landing/app/layout.tsx @@ -8,7 +8,7 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - + {children} );