From 472438edfe054aa681ffba49daceb91bf8767e0a Mon Sep 17 00:00:00 2001 From: Shun Usami Date: Tue, 6 Feb 2024 23:09:34 -0800 Subject: [PATCH] [frontend] Fix layout for login/signup pages --- frontend/app/(guest-only)/layout.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/frontend/app/(guest-only)/layout.tsx b/frontend/app/(guest-only)/layout.tsx index 31c566e6..d26533df 100644 --- a/frontend/app/(guest-only)/layout.tsx +++ b/frontend/app/(guest-only)/layout.tsx @@ -1,9 +1,3 @@ export default function Layout({ children }: { children: React.ReactNode }) { - return ( -
-
- {children} -
-
- ); + return
{children}
; }