CASH-415 wrong block check
This commit is contained in:
CarlNation 2025-03-21 10:55:20 -04:00
parent 73152239ee
commit aee40ae184

View file

@ -678,14 +678,12 @@ export default {
}
// if it's not a mobile and/or premium early bird, then make sure we remove any that may have been added
if (this.showPricingByDay) {
const removePremiumFeeIndex = supportingItems.findIndex(
(item) => item.partType == PREMIUM_FEE_PART_TYPE
);
const removePremiumFeeIndex = supportingItems.findIndex(
(item) => item.partType == PREMIUM_FEE_PART_TYPE
);
if (removePremiumFeeIndex >= 0) {
supportingItems.splice(removePremiumFeeIndex, 1);
}
if (removePremiumFeeIndex >= 0) {
supportingItems.splice(removePremiumFeeIndex, 1);
}
}