From a542b8437935e1a9f3cd5f25001d054641979043 Mon Sep 17 00:00:00 2001 From: Aashir Siddiqui Date: Mon, 9 Dec 2024 15:18:44 +0000 Subject: [PATCH] Added force-dynamic directive Signed-off-by: Aashir Siddiqui --- galasa-ui/src/app/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/galasa-ui/src/app/layout.tsx b/galasa-ui/src/app/layout.tsx index 96adb8d..3de3fa5 100644 --- a/galasa-ui/src/app/layout.tsx +++ b/galasa-ui/src/app/layout.tsx @@ -7,6 +7,8 @@ import PageHeader from '@/components/PageHeader'; import '../styles/global.scss'; +export const dynamic = "force-dynamic"; + export default function RootLayout({ children }: { children: React.ReactNode }) { const galasaServiceName = process.env.GALASA_SERVICE_NAME?.trim() || "Galasa Service";