Browse Source

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

Nam Vu 1 năm trước cách đây
mục cha
commit
68ad9a91b2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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})/