From 8c646ffccc838ec803cc53b8f2730d99bfaf820f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 19 Dec 2022 17:17:22 +0800 Subject: [PATCH] Remove unneeded linting changes --- .../web/utils/settings-page/labels/labelColorObjects.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/web/utils/settings-page/labels/labelColorObjects.tsx b/packages/web/utils/settings-page/labels/labelColorObjects.tsx index 5d4ea5655..ac4f1fbe6 100644 --- a/packages/web/utils/settings-page/labels/labelColorObjects.tsx +++ b/packages/web/utils/settings-page/labels/labelColorObjects.tsx @@ -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 -} +} \ No newline at end of file