@asdp/ferryui 0.1.22-dev.10301 → 0.1.22-dev.10302

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
@@ -1328,7 +1328,8 @@ var CardTicket = ({
1328
1328
  onPolicyClick,
1329
1329
  onSelectTicket,
1330
1330
  isLoading = false,
1331
- isVerifyingTicket = false
1331
+ isVerifyingTicket = false,
1332
+ loadType = 1
1332
1333
  }) => {
1333
1334
  const styles = useStyles5();
1334
1335
  const { width } = useWindowSize();
@@ -1821,18 +1822,7 @@ var CardTicket = ({
1821
1822
  },
1822
1823
  children: [
1823
1824
  /* @__PURE__ */ jsx(Subtitle2, { children: mergedLabels.totalPriceLabel }),
1824
- departureItem?.billingDetail?.total?.formatted ? /* @__PURE__ */ jsx(
1825
- Title3,
1826
- {
1827
- children: departureItem?.billingDetail?.total?.formatted
1828
- }
1829
- ) : /* @__PURE__ */ jsx(
1830
- Body1Strong,
1831
- {
1832
- style: { wordBreak: "break-word" },
1833
- children: mergedLabels.totalPriceMissing
1834
- }
1835
- )
1825
+ loadType === 6 ? /* @__PURE__ */ jsx(Body1Strong, { style: { wordBreak: "break-word" }, children: mergedLabels.totalPriceMissing }) : /* @__PURE__ */ jsx(Title3, { children: departureItem?.billingDetail?.total?.formatted })
1836
1826
  ]
1837
1827
  }
1838
1828
  ),