From 01faeb2d4d740f64caa8af50930c010c3318b479 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Mon, 22 Nov 2021 14:05:16 +0100 Subject: [PATCH] Removing deprecated comment. --- shared/lib/autocolors.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/shared/lib/autocolors.ts b/shared/lib/autocolors.ts index e29cd955..b3dc5afb 100644 --- a/shared/lib/autocolors.ts +++ b/shared/lib/autocolors.ts @@ -38,7 +38,6 @@ function areAutoColorsValid (autocolors: AutoColors): true | string[] { const errors: string[] = [] for (const k in autocolors) { const color = autocolors[k as keyof AutoColors] - // FIXME: there are missing cases. For now there are only basic values formats. if (!validateColor(color)) { errors.push(color) }