@loafmarkets/ui 0.1.195 → 0.1.197
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8538,7 +8538,7 @@ function PropertyOverview({
|
|
|
8538
8538
|
const currentDividendYield = tokenMarketCap && monthlyCoupon > 0 ? (monthlyCoupon * 12 / tokenMarketCap * 100).toFixed(2) : null;
|
|
8539
8539
|
const loadingSkeleton = /* @__PURE__ */ jsx(Skeleton, { width: 90, height: 18 });
|
|
8540
8540
|
const rawPropertyType = overviewData?.propertyType ?? propertyTypeLabel ?? null;
|
|
8541
|
-
const resolvedPropertyType = rawPropertyType === "
|
|
8541
|
+
const resolvedPropertyType = rawPropertyType?.toLowerCase() === "house" ? "Residential" : rawPropertyType;
|
|
8542
8542
|
const galleryImages = images ?? [];
|
|
8543
8543
|
const chainValue = /* @__PURE__ */ jsxs(ChainLogos, { children: [
|
|
8544
8544
|
/* @__PURE__ */ jsx(ChainLogoImg, { src: "/Base-Symbol.png", alt: "Base" }),
|
|
@@ -8627,7 +8627,7 @@ function PropertyOverview({
|
|
|
8627
8627
|
] }, item.label))
|
|
8628
8628
|
] }),
|
|
8629
8629
|
/* @__PURE__ */ jsxs(TrustBadgesCard, { children: [
|
|
8630
|
-
/* @__PURE__ */ jsx(TrustBadgesTitle, { children: "
|
|
8630
|
+
/* @__PURE__ */ jsx(TrustBadgesTitle, { children: "Independent Verification" }),
|
|
8631
8631
|
/* @__PURE__ */ jsxs(TrustBadgesRow, { children: [
|
|
8632
8632
|
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8633
8633
|
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 38, filter: "grayscale(1) brightness(10)", opacity: 0.5 } }) }),
|