Skip to content

Commit

Permalink
🚑️ hotfix: hide board button in production
Browse files Browse the repository at this point in the history
  • Loading branch information
jamerrq committed Jan 17, 2024
1 parent c0ad0cc commit 006e40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/main/buttons.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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'
---

<article class={BUTTONS_STYLES} transition:persist>
Expand Down

0 comments on commit 006e40b

Please sign in to comment.