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.cjs.js CHANGED
@@ -7106,7 +7106,7 @@ const LinkWrapProductRow = material.styled(LinkElement)(({ theme }) => ({
7106
7106
  }));
7107
7107
  const lightenColor = (hex, percent) => {
7108
7108
  let r, g, b;
7109
- if (hex.length === 7) {
7109
+ if (hex?.length === 7) {
7110
7110
  r = parseInt(hex.slice(1, 3), 16);
7111
7111
  g = parseInt(hex.slice(3, 5), 16);
7112
7112
  b = parseInt(hex.slice(5, 7), 16);