diff --git a/src/store/index.js b/src/store/index.js index c582e318..a2bfbcd7 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -901,8 +901,8 @@ export const useMainStore = defineStore({ this.order.policy.deductible.repair = vehicle?.repairWaived ?? false ? 0 : vehicle.deductible; // TODO logic should be more complicated later on - this.order.originalDeductible = vehicle.deductible; - this.order.currentDeductible = vehicle.deductible; + this.order.originalDeductible = parseFloat(vehicle.deductible); + this.order.currentDeductible = parseFloat(vehicle.deductible); this.resetSupportingItemsState(); this.resetVapsState();