fix build
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-23 13:56:52 +01:00
parent 64628bf068
commit 6ba98fa6b6

View File

@@ -25,7 +25,7 @@ function resolveTailwindToneColor(tone: string | undefined): string | null {
return null; return null;
} }
const colorSource = tailwindColors as Record<string, unknown>; const colorSource = tailwindColors as unknown as Record<string, unknown>;
const lastDashIndex = normalizedTone.lastIndexOf('-'); const lastDashIndex = normalizedTone.lastIndexOf('-');
if (lastDashIndex === -1) { if (lastDashIndex === -1) {