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}>;
}