From 770a9a14857cc9444db5f1dc53e22df8f0639b7b Mon Sep 17 00:00:00 2001 From: Marko Djordjevic Date: Wed, 18 Feb 2026 20:34:49 +0100 Subject: [PATCH] code-review-fix task 12.2: replace @ts-ignore with proper CSS custom property type assertion in Toolbox.tsx --- src/components/Toolbox.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Toolbox.tsx b/src/components/Toolbox.tsx index 0fedd5b..3aff238 100644 --- a/src/components/Toolbox.tsx +++ b/src/components/Toolbox.tsx @@ -214,9 +214,8 @@ export default function Toolbox({ style={{ backgroundColor: preset.color, borderColor: isSelected ? preset.color : 'transparent', - // @ts-ignore '--tw-ring-color': preset.color, - }} + } as React.CSSProperties & { [key: string]: string }} title={preset.name} /> );