We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c954d82 commit 739c097Copy full SHA for 739c097
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