diff --git a/src/store/index.js b/src/store/index.js index b7f51f4cb..ee7ea4911 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1243,13 +1243,13 @@ export const actions = { }); }, - getMobileEarlyBirdFee(context) { + getMobilePremiumFee(context) { const damageType = context.getters.damage.isRepair ? "Repair" : "Replace"; const paymentType = context.getters.order.payment.isInsurance ? "Insurance" : "Cash"; return globalMethods.callHttpClient({ - method: endpoints.GetMobileEarlyBirdFee.method, - endpoint: `${endpoints.GetMobileEarlyBirdFee.url}/${paymentType}/${damageType}`, + method: endpoints.GetMobilePremiumFee.method, + endpoint: `${endpoints.GetMobilePremiumFee.url}/${paymentType}/${damageType}`, }); },