sellmate-design-system-react 0.8.1 → 0.8.2

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.
@@ -6419,14 +6419,14 @@ function SKeyValueTable({
6419
6419
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-[12px] font-bold leading-[20px] text-[color:var(--sys-color-fg-primary)]", children: f.label }),
6420
6420
  f.required && /* @__PURE__ */ jsxRuntime.jsx(SIcon, { name: "star", size: 12, color: "var(--sys-color-fg-accent)" })
6421
6421
  ] }),
6422
- f.helpText && /* @__PURE__ */ jsxRuntime.jsx(
6422
+ f.helpText && f.helpText.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(
6423
6423
  STooltip,
6424
6424
  {
6425
6425
  trigger: "hover",
6426
6426
  icon: "helpOutline",
6427
6427
  iconSize: 16,
6428
6428
  color: "var(--sys-color-fg-success)",
6429
- message: [f.helpText]
6429
+ message: f.helpText
6430
6430
  }
6431
6431
  )
6432
6432
  ] })