reset file

This commit is contained in:
Rupin Khandelwal
2022-07-11 22:53:28 +00:00
parent 6cffbc23c7
commit 8637651be9

View File

@ -47,7 +47,6 @@ export const labelColorObjects: LabelColorObjects = {
export const randomLabelColorHex = () => {
const colorHexes = Object.keys(labelColorObjects).slice(0, -1)
const randomColorHex =
colorHexes[Math.floor(Math.random() * colorHexes.length)]
const randomColorHex = colorHexes[Math.floor(Math.random() * colorHexes.length)]
return randomColorHex
}