CSR-747 Fix /initialize issue for local

This commit is contained in:
Katie 2022-12-22 10:56:41 -05:00
parent 142b7b2a07
commit 0fb2104f97
2 changed files with 4 additions and 3 deletions

View file

@ -329,7 +329,7 @@ export default {
navigateForward() {
const payment = this.$store.getters.payment;
const vehicleChangedDuringPolicyLookupInHeritage =
payment.isInsurance &&
payment.insuranceCoverage.coverageStatus &&

View file

@ -130,8 +130,9 @@ export default {
async initSession() {
const sid = getSessionIdValue();
const skey = getSessionKeyValue();
const referrer = applicationConfig.CURRENT_ENVIRONMENT != "Localhost" ? document.referrer : null;
const referrer =
applicationConfig.CURRENT_ENVIRONMENT != "Localhost" ? document.referrer : null;
var payload = {
userId: getDeviceIdValue(),
sessionId: sid,