Remove unneeded method.

This commit is contained in:
Bryan Mauger 2023-01-05 11:42:03 -05:00
parent 7c6dea90be
commit 2531f12ac3

View file

@ -522,15 +522,6 @@ export const actions = {
},
});
},
lookupVinByImage(context, image) {
const data = new FormData();
data.append("file", image);
return globalMethods.callSimpleHttpClient({
method: endpoints.LookupVinByImage.method,
endpoint: endpoints.LookupVinByImage.url,
payload: data,
});
},
getVehicleMakes(context, { year }) {
return globalMethods.callHttpClient({
method: endpoints.GetVehicleMakes.method,