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.
package/dist/index.js CHANGED
@@ -9369,14 +9369,14 @@ function SKeyValueTable({
9369
9369
  /* @__PURE__ */ jsx("span", { className: "text-[12px] font-bold leading-[20px] text-[color:var(--sys-color-fg-primary)]", children: f.label }),
9370
9370
  f.required && /* @__PURE__ */ jsx(SIcon, { name: "star", size: 12, color: "var(--sys-color-fg-accent)" })
9371
9371
  ] }),
9372
- f.helpText && /* @__PURE__ */ jsx(
9372
+ f.helpText && f.helpText.length > 0 && /* @__PURE__ */ jsx(
9373
9373
  STooltip,
9374
9374
  {
9375
9375
  trigger: "hover",
9376
9376
  icon: "helpOutline",
9377
9377
  iconSize: 16,
9378
9378
  color: "var(--sys-color-fg-success)",
9379
- message: [f.helpText]
9379
+ message: f.helpText
9380
9380
  }
9381
9381
  )
9382
9382
  ] })