@loafmarkets/ui 0.1.69 → 0.1.71

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
@@ -9743,7 +9743,7 @@ function OfferingProgressCard({
9743
9743
  /* @__PURE__ */ jsx("span", { children: "\u24D8" })
9744
9744
  ] }),
9745
9745
  /* @__PURE__ */ jsxs(LivePercent, { children: [
9746
- percentSold.toFixed(1),
9746
+ percentSold < 0.1 && percentSold > 0 ? percentSold.toFixed(3) : percentSold.toFixed(1),
9747
9747
  "%",
9748
9748
  /* @__PURE__ */ jsx("span", { className: "arrow", children: "\u2191" })
9749
9749
  ] })
@@ -11653,7 +11653,7 @@ function PortfolioActivityPanel({
11653
11653
  formatTimestamp(trade.executedAt)
11654
11654
  ] })
11655
11655
  ] }),
11656
- /* @__PURE__ */ jsx(
11656
+ trade.status === "SETTLEMENT_FAILED" ? /* @__PURE__ */ jsx(ActivityTag, { $color: "#f6465d", $bg: "rgba(246,70,93,0.12)", children: "Failed" }) : /* @__PURE__ */ jsx(
11657
11657
  ActivityTag,
11658
11658
  {
11659
11659
  $color: trade.side === "SELL" ? "#f6465d" : "#0ecb81",