From 223c00a382c8d6fb13fa22c67d27d781ac8b2aed Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Wed, 4 Feb 2026 11:32:14 +0100 Subject: [PATCH] fix: conditionally render OfflineBanner and adjust main padding based on user authentication and online status --- app/layout-content.tsx | 4 ++-- components/OfflineBanner.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/layout-content.tsx b/app/layout-content.tsx index 0175a44..1a31c0f 100644 --- a/app/layout-content.tsx +++ b/app/layout-content.tsx @@ -55,9 +55,9 @@ export default function LayoutContent({ children }: { children: React.ReactNode showFaq={false} showSecurity={false} showPricing={true} - bottomContent={} + bottomContent={auth.user ? : undefined} /> -
+
{children}