From 006e40b871e9632c7b5a40261d8f3e5b7fddf0af Mon Sep 17 00:00:00 2001 From: jamerrq Date: Wed, 17 Jan 2024 16:30:10 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20hotfix:=20hide=20board?= =?UTF-8?q?=20button=20in=20production?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/main/buttons.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/main/buttons.astro b/src/components/main/buttons.astro index fb3f382..5e047c4 100644 --- a/src/components/main/buttons.astro +++ b/src/components/main/buttons.astro @@ -48,7 +48,7 @@ import Moon from '@components/icons/moon.astro' import Sun from '@components/icons/sun.astro' const BOARD_BUTTON_STYLE = - process.env.NODE_ENV === 'development' ? '' : 'hidden' + process.env.NODE_ENV !== 'development' ? '' : 'hidden' ---