Skip to content

Commit

Permalink
Merge pull request #4345 from omnivore-app/main
Browse files Browse the repository at this point in the history
Web production deployment
  • Loading branch information
jacksonh committed Aug 28, 2024
2 parents a5a6cd3 + 0bb5019 commit e47d256
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion packages/web/components/elements/MaintenanceBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const MaintenanceBanner = () => {
] = usePersistedState({
key: 'show-maintenance-mode',
isSessionStorage: false,
initialValue: true,
initialValue: false,
})
return (
<>
Expand Down
1 change: 0 additions & 1 deletion packages/web/components/templates/AuthLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ type ProfileLayoutProps = {
export function AuthLayout(props: ProfileLayoutProps): JSX.Element {
return (
<>
<MaintenanceBanner />
<VStack
alignment="center"
distribution="center"
Expand Down
1 change: 0 additions & 1 deletion packages/web/components/templates/LoginLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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} />}
Expand Down
1 change: 0 additions & 1 deletion packages/web/components/templates/NavigationLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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={() => {
Expand Down

0 comments on commit e47d256

Please sign in to comment.