Skip to content

Commit

Permalink
Merge pull request #439 from commercelayer/fix-save-address-notes
Browse files Browse the repository at this point in the history
Add missing `notes` field to address form schema
  • Loading branch information
gciotola authored Nov 22, 2023
2 parents 8afe11c + 594ce7a commit 4452ef5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ const addressFormSchema = z.object({
state_code: zodString,
country_code: zodString,
phone: zodString,
billing_info: z.string().nullish()
billing_info: z.string().nullish(),
notes: z.string().nullish()
})

export type ResourceAddressFormValues = z.infer<typeof addressFormSchema>
Expand Down

0 comments on commit 4452ef5

Please sign in to comment.