weird zoom bug

This commit is contained in:
Drew Taylor
2021-07-14 17:09:17 -07:00
parent c0a11de056
commit 1bb679a3f8
6 changed files with 179 additions and 64 deletions

View File

@@ -55,6 +55,11 @@ const vehiclesAPI = {
})
.then(fetchRespHandler),
getState: async (token, vin) => fetch(`${API_ENDPOINT}/carstate?vin=${vin}`, {
method: "GET",
headers: Object.assign({ "Content-Type": "application/json" }, getAuthHeaderOptions(token)),
})
.then(fetchRespHandler),
};
export default vehiclesAPI;