Skip to content

Commit

Permalink
Merge pull request #1532 from 42organization/fix/#1514-login-page-error
Browse files Browse the repository at this point in the history
[test-deploy] index layout 확인
  • Loading branch information
cweedlee authored Sep 2, 2024
2 parents 3429429 + fe2b3e8 commit 8a44173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Layout/LayoutProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ const LayoutProvider = ({ children }: LayoutProviderProps) => {
console.log(isLogin);
const app = usePathname();
switch (app) {
case '':
case 'agenda':
return <AgendaAppLayout>{children}</AgendaAppLayout>;
case 'takgu':
return <TakguAppLayout>{children}</TakguAppLayout>;
case 'admin':
return <AdminAppLayout>{children}</AdminAppLayout>;
case '':
default:
return <>{children}</>;
}
Expand Down

0 comments on commit 8a44173

Please sign in to comment.