CSR-1450 | Nullcheck to fix defect

This commit is contained in:
Scott Kiener 2023-06-16 10:17:19 -04:00
parent f71d0a53a3
commit 4c3a402318

View file

@ -343,7 +343,7 @@ export const mutations = {
//early bird fee used on schedule page also needs reset when schedule is reset
const supportingItems = state.order.lineItems.supportingItems;
const removeEarlyBirdIndex = supportingItems.findIndex(
const removeEarlyBirdIndex = supportingItems?.findIndex(
(item) => item.partType == PREMIUM_FEE_PART_TYPE
);