From fe2b3e80c76d3a9206809aa1825d2254f4cd36db Mon Sep 17 00:00:00 2001 From: siwolee Date: Mon, 2 Sep 2024 22:43:54 +0900 Subject: [PATCH] =?UTF-8?q?test:=20index=20layout=20=ED=99=95=EC=9D=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Layout/LayoutProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Layout/LayoutProvider.tsx b/Layout/LayoutProvider.tsx index 81ed49d81..abb175e81 100644 --- a/Layout/LayoutProvider.tsx +++ b/Layout/LayoutProvider.tsx @@ -18,13 +18,13 @@ const LayoutProvider = ({ children }: LayoutProviderProps) => { console.log(isLogin); const app = usePathname(); switch (app) { + case '': case 'agenda': return {children}; case 'takgu': return {children}; case 'admin': return {children}; - case '': default: return <>{children}; }