For a few bank cards, for example, SBI credit card, the stripe payment page is struck on the bank loader modal screen it's not navigating to the OTP screen once the card details are entered. For a few other bank cards its working fine for example (HDFC cards)
Did anyone face this issue?
Steps I followed
- Load stripe checkout webview
- Enter card details (SBI credit card or Bank of India debit card)
- Modal will open with loader
- Received the OTP to the registered mobile number
- BUT WEBVIEW NOT REDIRECTING TO THE BANK OTP SCREEN.
Here is my code
<StripeCheckout
stripePublicKey={STRIPE_PUBLIC_KEY}
checkoutSessionInput={{
sessionId: paymentDetail.external_reference_id,
}}
onSuccess={handleSuccessStripePayemnt}
onCancel={handleCancelStripePayemnt}
/>
The screen is getting struck on this screen in the APP(Not able to click on authenticate button). But on web, it's opening a new tab for authentication

For a few bank cards, for example, SBI credit card, the stripe payment page is struck on the bank loader modal screen it's not navigating to the OTP screen once the card details are entered. For a few other bank cards its working fine for example (HDFC cards)
Did anyone face this issue?
Steps I followed
Here is my code
The screen is getting struck on this screen in the APP(Not able to click on authenticate button). But on web, it's opening a new tab for authentication