Browse Source

fix: validateColorHex: cannot read properties of undefined (reading 'length') (#6242)

Nam Vu 9 months ago
parent
commit
68ad9a91b2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/app/components/app/overview/settings/index.tsx

+ 1 - 1
web/app/components/app/overview/settings/index.tsx

@@ -109,7 +109,7 @@ const SettingsModal: FC<ISettingsModalProps> = ({
     }
 
     const validateColorHex = (hex: string | null) => {
-      if (hex === null || hex.length === 0)
+      if (hex === null || hex?.length === 0)
         return true
 
       const regex = /#([A-Fa-f0-9]{6})/