diff --git a/web/app/(all)/layout.tsx b/web/app/(all)/layout.tsx
index 0238526488b..32589c4bf09 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 56380fb66b9..0ed40f86b2a 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}>
);
}