diff --git a/src/components/Banner.tsx b/src/components/Banner.tsx index 848362c5..39e8320b 100644 --- a/src/components/Banner.tsx +++ b/src/components/Banner.tsx @@ -7,7 +7,7 @@ type BannerProps = { } export function Banner({ children }: BannerProps) { - return process.env.SHOW_ANNOUNCEMENT_BANNER === 'true' ? ( + return ( {children} - ) : null + ) }