We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7890f83 commit ff1939bCopy full SHA for ff1939b
frontend/src/components/tickets-page/use-cart.ts
@@ -67,7 +67,8 @@ export const EMPTY_INITIAL_CART_REDUCER = {
67
invoiceInformation: {
68
isBusiness: false,
69
companyName: "",
70
- name: "",
+ givenName: "",
71
+ familyName: "",
72
vatId: "",
73
address: "",
74
zipCode: "",
frontend/src/components/tickets-page/utils.ts
@@ -9,7 +9,8 @@ type InvoiceInformationKeys = (keyof InvoiceInformationState)[];
9
10
export const hasOrderInformation = (state: OrderState): boolean => {
11
const requiredKeys: InvoiceInformationKeys = [
12
- "name",
+ "givenName",
13
+ "familyName",
14
"address",
15
"zipCode",
16
"city",
0 commit comments