From 6ce3e1a956ae7679e2d6ad0688a9fa2049ca7b53 Mon Sep 17 00:00:00 2001 From: Goran Stamenkovski Date: Fri, 19 Jan 2024 09:13:16 +0100 Subject: [PATCH] Update defaults for payment method names ISSUE: CS-5023 --- notification/src/config/config.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/notification/src/config/config.js b/notification/src/config/config.js index d325b95c0..d5d4b3ca6 100644 --- a/notification/src/config/config.js +++ b/notification/src/config/config.js @@ -66,10 +66,11 @@ function getAllAdyenMerchantAccounts() { function getAdyenPaymentMethodsToNames() { return { - scheme: 'Credit Card', - pp: 'PayPal', - klarna: 'Klarna', - gpay: 'Google Pay', + scheme: { en: 'Credit Card' }, + pp: { en: 'PayPal' }, + klarna: { en: 'Klarna' }, + affirm: { en: 'Affirm' }, + gpay: { en: 'Google Pay' }, ...(config.adyenPaymentMethodsToNames || {}), } }