Skip to content

Commit

Permalink
Merge pull request #97 from supabase-community/feat/temp-hide-rename-…
Browse files Browse the repository at this point in the history
…banner

feat: temporarily hide rename banner
  • Loading branch information
gregnr authored Sep 5, 2024
2 parents c954d82 + 739c097 commit 5be4cc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/postgres-new/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export default function Layout({ children }: LayoutProps) {
<TooltipProvider delayDuration={0}>
<div className="w-full h-full flex flex-col overflow-hidden">
{isPreview && <PreviewBanner />}
{(isLegacyDomain || isLegacyDomainReferrer) && <RenameBanner />}
{/* TODO: re-enable rename banner when ready */}
{false && (isLegacyDomain || isLegacyDomainReferrer) && <RenameBanner />}
<main className="flex-1 flex flex-col lg:flex-row min-h-0">
{/* TODO: make sidebar available on mobile */}
{!isSmallBreakpoint && <Sidebar />}
Expand Down

0 comments on commit 5be4cc1

Please sign in to comment.