CSR-1450 | Nullcheck to fix defect
This commit is contained in:
parent
f71d0a53a3
commit
4c3a402318
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ export const mutations = {
|
||||||
|
|
||||||
//early bird fee used on schedule page also needs reset when schedule is reset
|
//early bird fee used on schedule page also needs reset when schedule is reset
|
||||||
const supportingItems = state.order.lineItems.supportingItems;
|
const supportingItems = state.order.lineItems.supportingItems;
|
||||||
const removeEarlyBirdIndex = supportingItems.findIndex(
|
const removeEarlyBirdIndex = supportingItems?.findIndex(
|
||||||
(item) => item.partType == PREMIUM_FEE_PART_TYPE
|
(item) => item.partType == PREMIUM_FEE_PART_TYPE
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue