diff --git a/web/app/(all)/layout.tsx b/web/app/(all)/layout.tsx
index 023852648..32589c4bf 100644
--- a/web/app/(all)/layout.tsx
+++ b/web/app/(all)/layout.tsx
@@ -23,9 +23,9 @@ export const viewport: Viewport = {
export default function AppLayout({ children }: { children: React.ReactNode }) {
return (
-
+ >
);
}
diff --git a/web/app/(home)/layout.tsx b/web/app/(home)/layout.tsx
index 56380fb66..0ed40f86b 100644
--- a/web/app/(home)/layout.tsx
+++ b/web/app/(home)/layout.tsx
@@ -16,6 +16,6 @@ export const viewport: Viewport = {
export default function HomeLayout({ children }: { children: React.ReactNode }) {
return (
-
+ <>{children}>
);
}