From 148618b88070192b44e23505fb699eb92b4fd75a Mon Sep 17 00:00:00 2001 From: Do Siki Date: Mon, 17 Aug 2026 17:53:41 +0200 Subject: [PATCH] fix: keep staging marker in CMS only --- proto/src/app/layout.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/proto/src/app/layout.tsx b/proto/src/app/layout.tsx index ce8807d..5d2ce2d 100755 --- a/proto/src/app/layout.tsx +++ b/proto/src/app/layout.tsx @@ -62,7 +62,6 @@ export default function RootLayout({ }: Readonly<{ children: React.ReactNode; }>) { - const isStaging = process.env.NEXT_PUBLIC_DEPLOY_ENV === 'staging'; return ( @@ -86,11 +85,6 @@ export default function RootLayout({ style={{ background: 'var(--color-background)', color: 'var(--color-foreground)' }} > - {isStaging && ( -
- ⚠ TESZTKÖRNYEZET — A STAGING OLDALT LÁTOD -
- )}
{children}