diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 9e48c05db..e8f523827 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -157,7 +157,7 @@ export default async function Layout(props: { const feedbackEnabled = process.env.NEXT_PUBLIC_FEEDBACK_ENABLED === 'true'; const cookieStore = await cookies(); - const hasSeenLoader = cookieStore.has('etib_initial_load'); + const hasSeenLoader = cookieStore.has('etib_initial_loader_v3'); return ( { // Set a session cookie so the server knows not to render the loader again - document.cookie = "etib_initial_load=true; path=/; samesite=lax"; + document.cookie = "etib_initial_loader_v3=true; path=/; samesite=lax"; setIsLoading(false); };