diff --git a/view/frontend/web/js/view/payment/method-renderer/adyen-cc-vault-method.js b/view/frontend/web/js/view/payment/method-renderer/adyen-cc-vault-method.js index 8b0494c80..9d959ed38 100644 --- a/view/frontend/web/js/view/payment/method-renderer/adyen-cc-vault-method.js +++ b/view/frontend/web/js/view/payment/method-renderer/adyen-cc-vault-method.js @@ -316,15 +316,6 @@ define([ return window.checkoutConfig.payment.adyenCc.methodCode; }, - getCcCodeByAltCode: function(altCode) { - let ccTypes = window.checkoutConfig.payment.ccform.availableTypesByAlt[this.getCode()]; - if (ccTypes.hasOwnProperty(altCode)) { - return ccTypes[altCode]; - } - - return ''; - }, - getAllInstallments: function() { return window.checkoutConfig.payment.adyenCc.installments; },