| } | } | ||||
| const validateColorHex = (hex: string | null) => { | const validateColorHex = (hex: string | null) => { | ||||
| if (hex === null || hex.length === 0) | |||||
| if (hex === null || hex?.length === 0) | |||||
| return true | return true | ||||
| const regex = /#([A-Fa-f0-9]{6})/ | const regex = /#([A-Fa-f0-9]{6})/ |