From c8049a483d4cd62ae83b760ed147168ec375219e Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Thu, 20 Mar 2025 17:27:30 -0600 Subject: [PATCH] Fix issue with auth token not on build time --- ui/src/app/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/app/layout.tsx b/ui/src/app/layout.tsx index 427909bd..50f8d79a 100644 --- a/ui/src/app/layout.tsx +++ b/ui/src/app/layout.tsx @@ -8,6 +8,8 @@ import SampleImageModal from '@/components/SampleImageModal'; import { Suspense } from 'react'; import AuthWrapper from '@/components/AuthWrapper'; +export const dynamic = 'force-dynamic'; + const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = {