summit-registration-lite 1.0.73 → 1.0.77

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 CHANGED
@@ -500,7 +500,7 @@ const actions_payTicket = (token = null, stripe = null, zipCode = null) => async
500
500
  const access_token = await getAccessToken();
501
501
  let params = {
502
502
  access_token,
503
- expand: 'tickets, tickets.owner, tickets.ticket_type, tickets.ticket_type.taxes'
503
+ expand: 'tickets,' + 'tickets.owner,' + 'tickets.owner.extra_questions,' + 'tickets.badge,' + 'tickets.badge.type,' + 'tickets.badge.type.access_levels,' + 'tickets.badge.type.features,' + 'tickets.ticket_type,' + 'tickets.ticket_type.taxes'
504
504
  };
505
505
  let normalizedEntity = {
506
506
  billing_address_1: (userProfile === null || userProfile === void 0 ? void 0 : userProfile.address1) || '',
@@ -1890,10 +1890,10 @@ const RegistrationLite = _ref => {
1890
1890
  }
1891
1891
  }, [profileData]);
1892
1892
  Object(external_react_["useEffect"])(() => {
1893
- if (summitData && profileData && ticketTypes.length == 0) {
1893
+ if (summitData && profileData) {
1894
1894
  getTicketTypes(summitData.id).then(() => getTaxesTypes(summitData.id));
1895
1895
  }
1896
- }, [summitData, ticketTypes, taxTypes, profileData]);
1896
+ }, [summitData, profileData]);
1897
1897
  Object(external_react_["useEffect"])(() => {
1898
1898
  if (step === 1 && registrationForm.ticketType && registrationForm.personalInformation) {
1899
1899
  ticketReservation();