From 2dc6ef33050d4b8f4253d1040830701e8681b853 Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Wed, 8 Mar 2023 13:24:31 -0500 Subject: [PATCH] Cherry-pick: Renamed image file in html response --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 5b4390181..529b24fc7 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -532,7 +532,7 @@ export const actions = { }, lookupVinByImage(context, image) { const data = new FormData(); - data.append("file", image); + data.append("vinFile", image); return globalMethods.callExternalHttpClient({ method: endpoints.LookupVinByImage.method, endpoint: endpoints.LookupVinByImage.url,