We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c954d82 + 739c097 commit 5be4cc1Copy full SHA for 5be4cc1
apps/postgres-new/components/layout.tsx
@@ -33,7 +33,8 @@ export default function Layout({ children }: LayoutProps) {
33
<TooltipProvider delayDuration={0}>
34
<div className="w-full h-full flex flex-col overflow-hidden">
35
{isPreview && <PreviewBanner />}
36
- {(isLegacyDomain || isLegacyDomainReferrer) && <RenameBanner />}
+ {/* TODO: re-enable rename banner when ready */}
37
+ {false && (isLegacyDomain || isLegacyDomainReferrer) && <RenameBanner />}
38
<main className="flex-1 flex flex-col lg:flex-row min-h-0">
39
{/* TODO: make sidebar available on mobile */}
40
{!isSmallBreakpoint && <Sidebar />}
0 commit comments