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:
parent
e964fc4009
commit
7da3cc2cd0
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue