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