sevago-sso-fe 1.0.86 → 1.0.92

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.esm.js CHANGED
@@ -7088,7 +7088,7 @@ const LinkWrapProductRow = styled$3(LinkElement)(({ theme }) => ({
7088
7088
  }));
7089
7089
  const lightenColor = (hex, percent) => {
7090
7090
  let r, g, b;
7091
- if (hex.length === 7) {
7091
+ if (hex?.length === 7) {
7092
7092
  r = parseInt(hex.slice(1, 3), 16);
7093
7093
  g = parseInt(hex.slice(3, 5), 16);
7094
7094
  b = parseInt(hex.slice(5, 7), 16);