formatting
This commit is contained in:
parent
a244865c5e
commit
ca7ffbd7f6
2 changed files with 3 additions and 4 deletions
|
|
@ -29,7 +29,7 @@ const GaLabels = {
|
||||||
ERROR: "Error",
|
ERROR: "Error",
|
||||||
LICENSE_PLATE_LOOKUP: "License_Plate_Look_Up",
|
LICENSE_PLATE_LOOKUP: "License_Plate_Look_Up",
|
||||||
VIN_LOOKUP: "Vin_Look_Up",
|
VIN_LOOKUP: "Vin_Look_Up",
|
||||||
ADDRESS_LOOKUP: "Address_Look_up",
|
ADDRESS_LOOKUP: "Address_Look_up",
|
||||||
};
|
};
|
||||||
|
|
||||||
const ValueToLogTypes = {
|
const ValueToLogTypes = {
|
||||||
|
|
|
||||||
|
|
@ -740,13 +740,12 @@ export const actions = {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
getDamageOptions(context, { carId,zipCode }) {
|
getDamageOptions(context, { carId, zipCode }) {
|
||||||
return globalMethods.callHttpClient({
|
return globalMethods.callHttpClient({
|
||||||
methods: endpoints.GetDamageOptions.method,
|
methods: endpoints.GetDamageOptions.method,
|
||||||
endpoint: `${endpoints.GetDamageOptions.url}/${carId}`,
|
endpoint: `${endpoints.GetDamageOptions.url}/${carId}`,
|
||||||
payload: {},
|
payload: {},
|
||||||
additionalSuccessEventDataHandler: (response) =>
|
additionalSuccessEventDataHandler: (response) => "QueryStringZip: " + zipCode,
|
||||||
"QueryStringZip: " + zipCode,
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue