formatting

This commit is contained in:
hiteshkumar87 2023-07-24 12:05:39 +05:30
parent a244865c5e
commit ca7ffbd7f6
2 changed files with 3 additions and 4 deletions

View file

@ -29,7 +29,7 @@ const GaLabels = {
ERROR: "Error",
LICENSE_PLATE_LOOKUP: "License_Plate_Look_Up",
VIN_LOOKUP: "Vin_Look_Up",
ADDRESS_LOOKUP: "Address_Look_up",
ADDRESS_LOOKUP: "Address_Look_up",
};
const ValueToLogTypes = {

View file

@ -740,13 +740,12 @@ export const actions = {
});
},
getDamageOptions(context, { carId,zipCode }) {
getDamageOptions(context, { carId, zipCode }) {
return globalMethods.callHttpClient({
methods: endpoints.GetDamageOptions.method,
endpoint: `${endpoints.GetDamageOptions.url}/${carId}`,
payload: {},
additionalSuccessEventDataHandler: (response) =>
"QueryStringZip: " + zipCode,
additionalSuccessEventDataHandler: (response) => "QueryStringZip: " + zipCode,
});
},