diff --git a/src/helpers/recal-helper.js b/src/helpers/recal-helper.js index 429e2c72..68fdd51c 100644 --- a/src/helpers/recal-helper.js +++ b/src/helpers/recal-helper.js @@ -64,8 +64,9 @@ export function containsRecalParts(lineItems) { const flattened = [ ...(lineItems.glassParts ?? []), ...(lineItems.supportingItems ?? []), + ...(lineItems.otherParts ?? []), + ...(lineItems.feeItems ?? []), ...(lineItems.vaps ?? []), - ...(lineItems.promos ?? []), ]; return flattened.some((li) => isRecalPartOrHasChildRecalPart(li));