From 744f1b47240ed2164f1c00e55f2f9702d01753c0 Mon Sep 17 00:00:00 2001 From: katiekroell <100247286+katiekroell@users.noreply.github.com> Date: Fri, 27 Mar 2026 11:51:40 -0400 Subject: [PATCH] Update src/helpers/recal-helper.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/helpers/recal-helper.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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));