CSR-747 Fix /initialize issue for local
This commit is contained in:
parent
142b7b2a07
commit
0fb2104f97
2 changed files with 4 additions and 3 deletions
|
|
@ -329,7 +329,7 @@ export default {
|
||||||
|
|
||||||
navigateForward() {
|
navigateForward() {
|
||||||
const payment = this.$store.getters.payment;
|
const payment = this.$store.getters.payment;
|
||||||
|
|
||||||
const vehicleChangedDuringPolicyLookupInHeritage =
|
const vehicleChangedDuringPolicyLookupInHeritage =
|
||||||
payment.isInsurance &&
|
payment.isInsurance &&
|
||||||
payment.insuranceCoverage.coverageStatus &&
|
payment.insuranceCoverage.coverageStatus &&
|
||||||
|
|
|
||||||
|
|
@ -130,8 +130,9 @@ export default {
|
||||||
async initSession() {
|
async initSession() {
|
||||||
const sid = getSessionIdValue();
|
const sid = getSessionIdValue();
|
||||||
const skey = getSessionKeyValue();
|
const skey = getSessionKeyValue();
|
||||||
const referrer = applicationConfig.CURRENT_ENVIRONMENT != "Localhost" ? document.referrer : null;
|
const referrer =
|
||||||
|
applicationConfig.CURRENT_ENVIRONMENT != "Localhost" ? document.referrer : null;
|
||||||
|
|
||||||
var payload = {
|
var payload = {
|
||||||
userId: getDeviceIdValue(),
|
userId: getDeviceIdValue(),
|
||||||
sessionId: sid,
|
sessionId: sid,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue