Skip to content

Commit

Permalink
chore: /app/layout에 불필요한 async 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
gxxrxn committed Jul 9, 2024
1 parent c9b43e8 commit 24cc4d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const metadata: Metadata = {
},
};

const RootLayout = async ({ children }: { children: React.ReactNode }) => {
const RootLayout = ({ children }: { children: React.ReactNode }) => {
return (
<html lang="ko">
<body className={`${LineSeedKR.variable} app-layout font-lineseed`}>
Expand Down

0 comments on commit 24cc4d2

Please sign in to comment.