From 6ba98fa6b6c65fcc35bc6074708f8798a055d60f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Mon, 23 Feb 2026 13:56:52 +0100 Subject: [PATCH] fix build --- src/components/Chip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Chip.tsx b/src/components/Chip.tsx index 2bacea3..a3e15e7 100644 --- a/src/components/Chip.tsx +++ b/src/components/Chip.tsx @@ -25,7 +25,7 @@ function resolveTailwindToneColor(tone: string | undefined): string | null { return null; } - const colorSource = tailwindColors as Record; + const colorSource = tailwindColors as unknown as Record; const lastDashIndex = normalizedTone.lastIndexOf('-'); if (lastDashIndex === -1) {