Skip to content

Commit

Permalink
Merge pull request #1221 from elie222/fix/onboarding-redirect-loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Elie Steinbock authored and GitHub committed Jan 6, 2026
2 parents e4d3ea3 + 32f43f0 commit e745a15
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 e745a15

Please sign in to comment.