From 57014fac2d013a044fdf837fd9291f7329418d82 Mon Sep 17 00:00:00 2001 From: Seungpyo Suh Date: Wed, 25 Sep 2024 16:00:11 +0900 Subject: [PATCH] Update layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f29638..9de13b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -23,7 +23,7 @@ export const metadata: Metadata = { export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { return ( - {children} + {children} ); }