@deepinnet-components/pc 0.0.16 → 0.0.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.
|
@@ -93,10 +93,10 @@ var AccountList = function AccountList() {
|
|
|
93
93
|
// );
|
|
94
94
|
// },
|
|
95
95
|
render: function render(_) {
|
|
96
|
-
var arr = _[0];
|
|
96
|
+
var arr = _ === null || _ === void 0 ? void 0 : _[0];
|
|
97
97
|
return /*#__PURE__*/React.createElement("div", {
|
|
98
98
|
className: "flex items-center flex-wrap"
|
|
99
|
-
}, arr.map(function (item, index) {
|
|
99
|
+
}, arr === null || arr === void 0 ? void 0 : arr.map(function (item, index) {
|
|
100
100
|
var isLast = index === arr.length - 1;
|
|
101
101
|
return /*#__PURE__*/React.createElement("div", {
|
|
102
102
|
key: item.id,
|