Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
fix: change Name on address to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dierker authored and moltar committed Aug 24, 2020
1 parent 2793ae0 commit a3d9f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sections/orders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const conditionSubtype: Codec<ConditionSubtype> = oneOf(
)

const Address = Codec.interface({
Name: string,
Name: optional(string),
AddressLine1: optional(string),
AddressLine2: optional(string),
AddressLine3: optional(string),
Expand Down

0 comments on commit a3d9f3d

Please sign in to comment.