diff --git a/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/layout.tsx b/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/layout.tsx
index 7e8c14357..35398a1f0 100644
--- a/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/layout.tsx
+++ b/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/layout.tsx
@@ -8,17 +8,17 @@ export default async function Layout(
props: { children: React.ReactNode, modal?: React.ReactNode, params: Promise<{ projectId: string }> }
) {
return (
- }>
-
+
- {/* Pre-fetch the current URL to prevent request waterfalls */}
-
+ {/* Pre-fetch the current URL to prevent request waterfalls */}
+
-
+
+ }>
{props.children}
{props.modal}
-
-
-
+
+
+
);
}