fix zip type error in lookup-vin-by-address API call
This commit is contained in:
parent
19d796f49c
commit
1ed8063e94
1 changed files with 2 additions and 2 deletions
|
|
@ -308,8 +308,8 @@ export default {
|
|||
{
|
||||
licenseLastName: lastName,
|
||||
licenseStreetAddress: streetAddress,
|
||||
licenseZip: zip,
|
||||
licenseState: state
|
||||
licenseZip: (typeof zip !== "string") ? zip.toString() : zip;
|
||||
licenseState: state,
|
||||
}, false
|
||||
);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue