From 877fbf955b536c17d505e49f7b63b7d4e5772015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirty=20=E2=9A=A1=EF=B8=8F=20Room=20969?= <128037423+dirtyroom969@users.noreply.github.com> Date: Sat, 25 Mar 2023 14:51:51 +0300 Subject: [PATCH] Fix prevent "Tinkoff" and "Tinkoff QR" methods collision. (#400) * New payment methods and icons for Russia. SBP, Tinkoff QR. New icon for Tinkoff. * Fix to prevent Tinkoff and Tinkoff Qr collision. "Tinkoff" is "Tinkoff Bank" now. And "Sberbank" is "Sber Bank" (which is true, actually). --- frontend/src/components/PaymentMethods/MethodList.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/PaymentMethods/MethodList.ts b/frontend/src/components/PaymentMethods/MethodList.ts index 8416faef..f94e8db3 100644 --- a/frontend/src/components/PaymentMethods/MethodList.ts +++ b/frontend/src/components/PaymentMethods/MethodList.ts @@ -20,7 +20,7 @@ export const fiatMethods: PaymentMethod[] = [ { name: 'PromptPay', icon: 'promptpay' }, { name: 'Bizum', icon: 'bizum' }, { name: 'N26', icon: 'n26' }, - { name: 'Tinkoff', icon: 'tinkoff' }, + { name: 'Tinkoff Bank', icon: 'tinkoff' }, { name: 'TWINT', icon: 'twint' }, { name: 'BLIK', icon: 'blik' }, { name: 'MBWay', icon: 'mbway' }, @@ -37,7 +37,7 @@ export const fiatMethods: PaymentMethod[] = [ { name: 'PIX', icon: 'pix' }, { name: 'PayID', icon: 'payid' }, { name: 'Paysafe', icon: 'paysafe' }, - { name: 'Sberbank', icon: 'sberbank' }, + { name: 'Sber Bank', icon: 'sberbank' }, { name: 'PhonePe', icon: 'phonepe' }, { name: 'OVO', icon: 'ovo' }, { name: 'HalCash', icon: 'halcash' },