Merge pull request #1164 from Safelite/feature/CSR-1450
CSR-1450 | Nullcheck to fix defect
This commit is contained in:
commit
5f0d917f72
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
|
||||
const supportingItems = state.order.lineItems.supportingItems;
|
||||
const removeEarlyBirdIndex = supportingItems.findIndex(
|
||||
const removeEarlyBirdIndex = supportingItems?.findIndex(
|
||||
(item) => item.partType == PREMIUM_FEE_PART_TYPE
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue