0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-13 21:30:30 -05:00

chore: open Stripe payment management page in new tab

This commit is contained in:
Darcy Ye 2024-08-15 21:13:35 +08:00
parent bdb10db434
commit ed2d38670d
No known key found for this signature in database
GPG key ID: B46F4C07EDEFC610

View file

@ -146,7 +146,7 @@ const useSubscribe = () => {
}, },
}); });
window.location.assign(redirectUri); window.open(redirectUri, '_blank', 'noopener,noreferrer');
} catch (error: unknown) { } catch (error: unknown) {
void toastResponseError(error); void toastResponseError(error);
} }