@aclymatepackages/modules 2.1.16 → 2.1.17

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.
@@ -111,12 +111,12 @@ const PdlCompanySelect = _ref2 => {
111
111
  }, matchingCompanies.map((_ref5, idx) => {
112
112
  let {
113
113
  name,
114
- meta
114
+ id
115
115
  } = _ref5;
116
116
  return /*#__PURE__*/_react.default.createElement(CompanySelectionChip, _extends({
117
117
  key: "company-list-item-".concat(idx),
118
118
  name: name,
119
- isSelected: selectedCompanyId === meta.id,
119
+ isSelected: selectedCompanyId === id,
120
120
  setSelectedCompanyId: setSelectedCompanyId
121
121
  }, meta));
122
122
  })), /*#__PURE__*/_react.default.createElement(_material.Grid, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aclymatepackages/modules",
3
- "version": "2.1.16",
3
+ "version": "2.1.17",
4
4
  "description": "Aclymate modules",
5
5
  "author": "William Loopesko",
6
6
  "main": "dist/index.js",
@@ -98,11 +98,11 @@ const PdlCompanySelect = ({
98
98
  </Typography>
99
99
  </Grid>
100
100
  <Grid item container spacing={2} justifyContent="center">
101
- {matchingCompanies.map(({ name, meta }, idx) => (
101
+ {matchingCompanies.map(({ name, id }, idx) => (
102
102
  <CompanySelectionChip
103
103
  key={`company-list-item-${idx}`}
104
104
  name={name}
105
- isSelected={selectedCompanyId === meta.id}
105
+ isSelected={selectedCompanyId === id}
106
106
  setSelectedCompanyId={setSelectedCompanyId}
107
107
  {...meta}
108
108
  />