Remove unneeded linting changes

This commit is contained in:
Jackson Harper
2022-12-19 17:17:22 +08:00
parent 1ac5beef6c
commit 8c646ffccc

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
}
}