diff --git a/src/router/hooks/guards/billingGuard.js b/src/router/hooks/guards/billingGuard.js index 915a89c8b..42d86f46a 100644 --- a/src/router/hooks/guards/billingGuard.js +++ b/src/router/hooks/guards/billingGuard.js @@ -26,6 +26,9 @@ export async function billingGuard({ to, accountStore }) { return true } } else if (paymentReviewPending) { + if (to.name === 'account-settings') { + return true + } return BILLING_REDIRECT_OPTIONS } }