diff --git a/app/components/Header.tsx b/app/components/Header.tsx index 1288e9a..79b1f7c 100644 --- a/app/components/Header.tsx +++ b/app/components/Header.tsx @@ -16,6 +16,7 @@ import cn from '~/utils/cn'; interface Props { configAvailable: boolean; uiAccess: boolean; + onboarding: boolean; user?: AuthSession['user']; } @@ -136,7 +137,7 @@ export default function Header(data: Props) { ) : undefined} - {data.uiAccess ? ( + {data.uiAccess && !data.onboarding ? (