@asdp/ferryui 0.1.22-dev.10508 → 0.1.22-dev.10532

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.mjs CHANGED
@@ -2543,7 +2543,7 @@ var CardServiceMenu = ({
2543
2543
  ]
2544
2544
  }
2545
2545
  ) }, `skeleton-${index}`)) : displayItems.map((item, index) => {
2546
- return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs(
2546
+ return /* @__PURE__ */ jsx(React.Fragment, { children: /* @__PURE__ */ jsxs(
2547
2547
  Button,
2548
2548
  {
2549
2549
  className: getMenuItemClass(item.id),
@@ -2569,9 +2569,8 @@ var CardServiceMenu = ({
2569
2569
  )
2570
2570
  ] })
2571
2571
  ]
2572
- },
2573
- index
2574
- ) });
2572
+ }
2573
+ ) }, item.id ?? index);
2575
2574
  }),
2576
2575
  !isLoading && isOverflow && /* @__PURE__ */ jsxs(
2577
2576
  Button,
@@ -13316,7 +13315,9 @@ var CardVehicleOwnerForm = ({
13316
13315
  }
13317
13316
  const isLoadTypeOther = _loadTypeOptions.find(
13318
13317
  (lt) => lt.value.toString() === String(watchLoadType)
13319
- )?.label.startsWith(HARDCODED_NAME.LOAD_TYPE__LAINNYA);
13318
+ )?.label.startsWith(
13319
+ HARDCODED_NAME.LOAD_TYPE__LAINNYA
13320
+ );
13320
13321
  const isIndustryTypeOther = industryOptions?.find(
13321
13322
  (it) => it.value.toString() === String(watchIndustryType)
13322
13323
  )?.label === HARDCODED_NAME.INDUSTRY_TYPE__LAINNYA;