Disable maint. banner

This commit is contained in:
Jackson Harper
2024-08-28 13:27:58 +08:00
parent d688f2082f
commit 1f9d76732a
4 changed files with 1 additions and 4 deletions

View File

@ -10,7 +10,7 @@ export const MaintenanceBanner = () => {
] = usePersistedState({
key: 'show-maintenance-mode',
isSessionStorage: false,
initialValue: true,
initialValue: false,
})
return (
<>

View File

@ -12,7 +12,6 @@ type ProfileLayoutProps = {
export function AuthLayout(props: ProfileLayoutProps): JSX.Element {
return (
<>
<MaintenanceBanner />
<VStack
alignment="center"
distribution="center"

View File

@ -15,7 +15,6 @@ import { MaintenanceBanner } from '../elements/MaintenanceBanner'
export function LoginLayout(props: LoginFormProps): JSX.Element {
return (
<>
<MaintenanceBanner />
<MediumBreakpointBox
smallerLayoutNode={<MobileLoginLayout {...props} />}
largerLayoutNode={<MediumLoginLayout {...props} />}

View File

@ -118,7 +118,6 @@ export function NavigationLayout(props: NavigationLayoutProps): JSX.Element {
alignment="start"
>
<PageMetaData path={props.section} title={props.title} />
<MaintenanceBanner />
<Header
menuOpen={props.showNavigationMenu}
toggleMenu={() => {