@loafmarkets/ui 0.1.401 → 0.1.402
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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10369,7 +10369,9 @@ function PropertyOverview({
|
|
|
10369
10369
|
];
|
|
10370
10370
|
const growthPct = overviewData?.growth5Yr;
|
|
10371
10371
|
const propertyStats = [
|
|
10372
|
-
|
|
10372
|
+
// Property Value = the API offeringValuation (OverviewResponse.offeringValuation), NOT
|
|
10373
|
+
// midPrice×tokensIssued market cap (fixed 2026-07-22). null → '—', never a fabricated cap.
|
|
10374
|
+
{ label: "Property Value", value: isLoading && overviewData?.offeringValuation == null ? loadingSkeleton : overviewData?.offeringValuation ? fmtDollar(overviewData.offeringValuation) : "\u2014" },
|
|
10373
10375
|
...beta ? [] : [{ label: "Offers", value: "3" }],
|
|
10374
10376
|
{ label: "Growth (5yr)", value: growthPct != null ? `${growthPct > 0 ? "+" : ""}${growthPct}%` : "\u2014" },
|
|
10375
10377
|
{ label: "Last Dividend", value: overviewData?.lastDividend != null ? `$${overviewData.lastDividend.toFixed(2)}` : "\u2014" },
|