From 8079afee638791fea48b7e7cd58954d5de01612f Mon Sep 17 00:00:00 2001 From: Hwang Junheaok Date: Thu, 14 Nov 2024 17:59:21 +0900 Subject: [PATCH] fix: :bug: update html lang, hydration error --- apps/wow-docs/app/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/wow-docs/app/layout.tsx b/apps/wow-docs/app/layout.tsx index 6a3f4592..0747f8d9 100644 --- a/apps/wow-docs/app/layout.tsx +++ b/apps/wow-docs/app/layout.tsx @@ -17,9 +17,11 @@ const RootLayout = ({ children: React.ReactNode; }): JSX.Element => { return ( - - - {children} + + + + {children} + ); };