diff --git a/services/web/frontend/js/features/subscription/components/new/checkout/checkout-panel.tsx b/services/web/frontend/js/features/subscription/components/new/checkout/checkout-panel.tsx
index da52df43e5..073831192f 100644
--- a/services/web/frontend/js/features/subscription/components/new/checkout/checkout-panel.tsx
+++ b/services/web/frontend/js/features/subscription/components/new/checkout/checkout-panel.tsx
@@ -35,6 +35,7 @@ function CheckoutPanel() {
const { t } = useTranslation()
const {
couponError,
+ currencyCode,
planCode,
planName,
pricingFormState,
@@ -214,6 +215,10 @@ function CheckoutPanel() {
setCardIsValid(state.valid)
}, [])
+ if (currencyCode === 'INR' && paymentMethod !== 'credit_card') {
+ setPaymentMethod('credit_card')
+ }
+
if (recurlyLoadError) {
return (
@@ -321,10 +326,12 @@ function CheckoutPanel() {
{couponError}
)}
-
+ {currencyCode === 'INR' ? null : (
+
+ )}
{elements.current && (