Skip to content

Commit

Permalink
fix: 🐛 update html lang, hydration error
Browse files Browse the repository at this point in the history
  • Loading branch information
strawji02 committed Nov 14, 2024
1 parent 7d982d9 commit 8079afe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apps/wow-docs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ const RootLayout = ({
children: React.ReactNode;
}): JSX.Element => {
return (
<html lang="kr">
<Sidebar />
<body className={inter.className}>{children}</body>
<html lang="ko">
<body className={inter.className}>
<Sidebar />
{children}
</body>
</html>
);
};
Expand Down

0 comments on commit 8079afe

Please sign in to comment.