CASH-93 added null check to header
This commit is contained in:
Johnny shultz 2025-01-28 14:44:36 -05:00
parent e6df11f3f6
commit 134c78204c

View file

@ -70,7 +70,7 @@ export default {
[headerKeys.REFERRAL_SEQUENCE_NUMBER]: order?.referralSequenceNumber, [headerKeys.REFERRAL_SEQUENCE_NUMBER]: order?.referralSequenceNumber,
[headerKeys.TRANSACTION_ID]: crypto.randomUUID(), [headerKeys.TRANSACTION_ID]: crypto.randomUUID(),
[headerKeys.EON]: order?.eon, [headerKeys.EON]: order?.eon,
[headerKeys.LOG_ENABLED]: store.getters.applicationUser.loggingOption, [headerKeys.LOG_ENABLED]: store.getters.applicationUser.loggingOption ?? false,
}; };
axios({ axios({