summit-registration-lite 3.0.18 → 3.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -516,11 +516,7 @@ const reserveTicket = ({
|
|
|
516
516
|
const tickets = [...Array(ticketQuantity)].map(() => ({
|
|
517
517
|
type_id: ticket.id,
|
|
518
518
|
promo_code: promoCode || null
|
|
519
|
-
}));
|
|
520
|
-
|
|
521
|
-
tickets[0].attendee_first_name = firstName;
|
|
522
|
-
tickets[0].attendee_last_name = lastName;
|
|
523
|
-
tickets[0].attendee_email = email;
|
|
519
|
+
}));
|
|
524
520
|
let params = {
|
|
525
521
|
access_token,
|
|
526
522
|
expand: 'tickets,tickets.owner,tickets.ticket_type,tickets.ticket_type.taxes'
|