fix zip type error in lookup-vin-by-address API call

This commit is contained in:
Adam Caouette 2022-05-13 12:56:30 -04:00
parent 19d796f49c
commit 1ed8063e94

View file

@ -308,8 +308,8 @@ export default {
{
licenseLastName: lastName,
licenseStreetAddress: streetAddress,
licenseZip: zip,
licenseState: state
licenseZip: (typeof zip !== "string") ? zip.toString() : zip;
licenseState: state,
}, false
);
},