diff --git a/apps/sim/app/(landing)/components/nav/nav.tsx b/apps/sim/app/(landing)/components/nav/nav.tsx index 5196825776..ed05a58736 100644 --- a/apps/sim/app/(landing)/components/nav/nav.tsx +++ b/apps/sim/app/(landing)/components/nav/nav.tsx @@ -148,8 +148,8 @@ export default function Nav({ hideAuthButtons = false, variant = 'landing' }: Na )} - {/* Auth Buttons - respect hideAuthButtons prop and only show on hosted instances for landing pages */} - {!hideAuthButtons && (variant === 'auth' || isHosted) && ( + {/* Auth Buttons - show only when hosted, regardless of variant */} + {!hideAuthButtons && isHosted && (
-
+
Need help?{' '} Contact support
- - + + ) }