Skip to content

Commit

Permalink
Remove env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sophialittlejohn committed Sep 19, 2023
1 parent 6ce2144 commit 5d20486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type BannerProps = {
}

export function Banner({ children }: BannerProps) {
return process.env.SHOW_ANNOUNCEMENT_BANNER === 'true' ? (
return (
<Box
as="div"
py={1}
Expand All @@ -19,5 +19,5 @@ export function Banner({ children }: BannerProps) {
>
<Text variant="body2">{children}</Text>
</Box>
) : null
)
}

0 comments on commit 5d20486

Please sign in to comment.