Reverting unnecessary changes

This commit is contained in:
brydon1 2023-08-31 17:00:29 -04:00
parent 8bbd7afb77
commit 5db1b97e1b
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ const navigationScenarios = Object.freeze({
CLICKED_FORWARD_WITH_POLICY_AND_VEHICLES: 'CLICKED_FORWARD_WITH_POLICY_AND_VEHICLES', CLICKED_FORWARD_WITH_POLICY_AND_VEHICLES: 'CLICKED_FORWARD_WITH_POLICY_AND_VEHICLES',
// Bailout // Bailout
CLICKED_FORWARD_WITH_BAILOUT: 'CLICKED_FORWARD_WITH_BAILOUT', CLICKED_FORWARD_WITH_BAILOUT: 'CLICKED_FORWARD_WITH_BAILOUT'
}); });
export default navigationScenarios; export default navigationScenarios;

View file

@ -1303,14 +1303,14 @@ export const useMainStore = defineStore({
}, },
async validateZip({ zip }) { async validateZip({ zip }) {
return globalMethods.callHttpClient({ return await globalMethods.callHttpClient({
methods: endpoints.ValidateZip.method, methods: endpoints.ValidateZip.method,
endpoint: `${endpoints.ValidateZip.url}/${zip}` endpoint: `${endpoints.ValidateZip.url}/${zip}`
}); });
}, },
async validateClientTag(clientTag) { async validateClientTag(clientTag) {
return globalMethods.callHttpClient({ return await globalMethods.callHttpClient({
methods: endpoints.ValidateClientTag.method, methods: endpoints.ValidateClientTag.method,
endpoint: `${endpoints.ValidateClientTag.url}/${clientTag}` endpoint: `${endpoints.ValidateClientTag.url}/${clientTag}`
}); });