Set conceptsqid to empty string as Heritage has no checks on that

Heritage is trying to convert any non-null non-empty value to a guid and this causes a failure if "null" is sent as the value as its setting to the string "null".
This commit is contained in:
Matt Sykes 2026-04-15 17:14:25 -04:00
parent e964fc4009
commit 7da3cc2cd0

View file

@ -27,7 +27,7 @@ export async function navigateToHeritageFunnel({ shouldSaveSession, pageNameToLo
var heritageParms = {
corid: store.getters.order.referralCorrelationId,
src: "concept-funnel",
conceptsqid: store.getters.applicationUser.savedSessionId,
conceptsqid: store.getters.applicationUser.savedSessionId ?? "",
isInsurance: store.getters.payment.isInsurance,
};