From 22e61f5efe962f51da8b9baf8d7a513b7458ec8e Mon Sep 17 00:00:00 2001 From: TalexDreamSoul Date: Thu, 2 Jul 2026 08:56:52 -0700 Subject: [PATCH] fix: suppress root hydration warning --- app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 509d370..247c98e 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -13,7 +13,7 @@ type RootLayoutProps = { export default function RootLayout({ children }: RootLayoutProps): React.ReactElement { return ( - + {children} );