Skip to content

Commit

Permalink
fix: use checkout url with user info
Browse files Browse the repository at this point in the history
  • Loading branch information
jorilindell committed Apr 24, 2024
1 parent 1a8944e commit 721cb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/signupGroup/summaryPage/SummaryPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const SummaryPage: FC<SummaryPageProps> = ({ event, registration }) => {
};

const goToPaymentPage = (payment: Payment) => {
window.open(payment.logged_in_checkout_url, '_self', 'noopener,noreferrer');
window.open(payment.checkout_url, '_self', 'noopener,noreferrer');
};
const goToSignupCompletedPage = (signupId: string) => {
clearTimerAndStorage();
Expand Down

0 comments on commit 721cb94

Please sign in to comment.