File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/stripe_web/lib/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class WebStripe extends StripePlatform {
169169 paymentIntentClientSecret,
170170 data: stripe_js.ConfirmIdealPaymentData (
171171 paymentMethod: stripe_js.IdealPaymentMethodDetails .withBank (
172- ideal: stripe_js.IdealBankData (bank: paymentData.bankName),
172+ ideal: stripe_js.IdealBankData (bank: paymentData.bankName ?? "" ),
173173 ),
174174 returnUrl: urlScheme,
175175 // recommended
@@ -212,7 +212,7 @@ class WebStripe extends StripePlatform {
212212 paymentIntentClientSecret,
213213 data: stripe_js.ConfirmIdealPaymentData (
214214 paymentMethod: stripe_js.IdealPaymentMethodDetails .withBank (
215- ideal: stripe_js.IdealBankData (bank: paymentData.bankName),
215+ ideal: stripe_js.IdealBankData (bank: paymentData.bankName ?? "" ),
216216 ),
217217 returnUrl: returnUrl ?? urlScheme,
218218 ),
You can’t perform that action at this time.
0 commit comments