@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 CHANGED
@@ -8564,7 +8564,7 @@ function PropertyOverview({
8564
8564
  const currentDividendYield = tokenMarketCap && monthlyCoupon > 0 ? (monthlyCoupon * 12 / tokenMarketCap * 100).toFixed(2) : null;
8565
8565
  const loadingSkeleton = /* @__PURE__ */ jsxRuntime.jsx(Skeleton, { width: 90, height: 18 });
8566
8566
  const rawPropertyType = overviewData?.propertyType ?? propertyTypeLabel ?? null;
8567
- const resolvedPropertyType = rawPropertyType === "House" ? "Residential" : rawPropertyType;
8567
+ const resolvedPropertyType = rawPropertyType?.toLowerCase() === "house" ? "Residential" : rawPropertyType;
8568
8568
  const galleryImages = images ?? [];
8569
8569
  const chainValue = /* @__PURE__ */ jsxRuntime.jsxs(ChainLogos, { children: [
8570
8570
  /* @__PURE__ */ jsxRuntime.jsx(ChainLogoImg, { src: "/Base-Symbol.png", alt: "Base" }),
@@ -8653,7 +8653,7 @@ function PropertyOverview({
8653
8653
  ] }, item.label))
8654
8654
  ] }),
8655
8655
  /* @__PURE__ */ jsxRuntime.jsxs(TrustBadgesCard, { children: [
8656
- /* @__PURE__ */ jsxRuntime.jsx(TrustBadgesTitle, { children: "Musgrave Trust Architecture" }),
8656
+ /* @__PURE__ */ jsxRuntime.jsx(TrustBadgesTitle, { children: "Independent Verification" }),
8657
8657
  /* @__PURE__ */ jsxRuntime.jsxs(TrustBadgesRow, { children: [
8658
8658
  /* @__PURE__ */ jsxRuntime.jsxs(TrustBadge, { children: [
8659
8659
  /* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 38, filter: "grayscale(1) brightness(10)", opacity: 0.5 } }) }),