@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.js CHANGED
@@ -5842,7 +5842,7 @@ var StagesComponent = ({
5842
5842
  let stageColor = `text-[${primaryColor}] border-2 border-[${primaryColor}]`;
5843
5843
  let stageStyle = { borderColor: primaryColor, color: showAsActive ? "white" : primaryColor, backgroundColor: showAsActive ? primaryColor : "transparent" };
5844
5844
  if (stage.hasOwnProperty("isSuccess") && stage.isSuccess === false) {
5845
- stageColor = `bg-red-50 text-red-700 border-2 border-red-700`;
5845
+ stageColor = "bg-red-50 text-red-700 border-2 border-red-700";
5846
5846
  stageStyle = { borderColor: "red", color: "red", backgroundColor: "transparent" };
5847
5847
  }
5848
5848
  let stageLabel = stage[dataLabel];