@algorithm-shift/design-system 1.3.122 → 1.3.123

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
@@ -5758,7 +5758,7 @@ var StagesComponent = ({
5758
5758
  let stageColor = `text-[${primaryColor}] border-2 border-[${primaryColor}]`;
5759
5759
  let stageStyle = { borderColor: primaryColor, color: showAsActive ? "white" : primaryColor, backgroundColor: showAsActive ? primaryColor : "transparent" };
5760
5760
  if (stage.hasOwnProperty("isSuccess") && stage.isSuccess === false) {
5761
- stageColor = `bg-red-50 text-red-700 border-2 border-red-700`;
5761
+ stageColor = "bg-red-50 text-red-700 border-2 border-red-700";
5762
5762
  stageStyle = { borderColor: "red", color: "red", backgroundColor: "transparent" };
5763
5763
  }
5764
5764
  let stageLabel = stage[dataLabel];