Skip to content

Commit

Permalink
fix zipcode build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wkim10 committed Dec 11, 2024
1 parent 2b55a2a commit 54f0890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/createUserForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const CreateUserForm = ({ setUserID }: CreateUserForm) => {
address: formData.address,
city: formData.city,
state: formData.state,
zipCode: formData.zipCode,
zipCode: formData.zipCode ? parseInt(formData.zipCode) : null,
hasLicense: formData.hasLicense,
speaksEsp: formData.speaksEsp,
volunteerType: formData.volunteerType,
Expand Down

0 comments on commit 54f0890

Please sign in to comment.