diff --git a/src/store/index.js b/src/store/index.js index 233ad1e96..18c74a486 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -534,17 +534,6 @@ export const getters = { ); return !!nonWindshieldItems?.length; }, - isRecalibrationOnOrderDraft: (state) => { - const itemsToCheck = [ - ...(state.order.lineItems.glassParts ?? []), - ...(state.order.lineItems.supportingItems ?? []), - ]; - - return itemsToCheck.some( - (lineItem) => - lineItem.partType.toUpperCase() === partTypeStrings.RECALIBRATION.toUpperCase() - ); - }, isRecalibrationOnOrder: (state) => { return getHasRecalibrationPart(state); },