Skip to content

Commit

Permalink
fix: prevent unexpected onboarding-brief redirect when a step is present
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliezer Steinbock committed Jan 6, 2026
1 parent e4d3ea3 commit 32f43f0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/app/(app)/[emailAccountId]/onboarding/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ export default async function OnboardingPage(props: {
cookieStore,
});

if (utmValues.utmSource === "briefmymeeting" && !searchParams.force) {
if (
utmValues.utmSource === "briefmymeeting" &&
!searchParams.force &&
!searchParams.step
) {
redirect(`/${emailAccountId}/onboarding-brief`);
}

Expand Down

0 comments on commit 32f43f0

Please sign in to comment.