You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems though the StripeApi is expecting it to be: always or if_required.
│ ⛔ StripeApi pay error: IntegrationError: Invalid value for stripe.confirmPayment(): redirect should be one of the following strings: always, if_required. You specified: ifRequired. └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
The text was updated successfully, but these errors were encountered:
Version: stripe_js-2.0.1
The enum below, is defined in confirm_payment_options.dart:
enum PaymentConfirmationRedirect { always, ifRequired, }
It gets serialized in confirm_payment_options.g.dart as:
{ PaymentConfirmationRedirect.always: 'always', PaymentConfirmationRedirect.ifRequired: 'ifRequired', };
It seems though the StripeApi is expecting it to be: always or if_required.
│ ⛔ StripeApi pay error: IntegrationError: Invalid value for stripe.confirmPayment(): redirect should be one of the following strings: always, if_required. You specified: ifRequired. └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
The text was updated successfully, but these errors were encountered: