From a1aaed55fe826e2d0c7841d1cfd62ef87cd415a6 Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Wed, 13 May 2026 14:41:51 +0200 Subject: [PATCH] CC-40: with Null do not Highlight Fixes CC-40 --- src/components/RadioCards/RadioCards.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/RadioCards/RadioCards.tsx b/src/components/RadioCards/RadioCards.tsx index 1ac35a1..6f7e5c2 100644 --- a/src/components/RadioCards/RadioCards.tsx +++ b/src/components/RadioCards/RadioCards.tsx @@ -70,8 +70,8 @@ export const RadioCards = forwardRef(({ key={v} className={clsx( getStyleClassNames({ - variant: v !== null && v === currentValue ? 'shaded' : 'ghost', - intent: v !== null && v === currentValue ? 'primary' : 'secondary', + variant: v === currentValue ? 'shaded' : 'ghost', + intent: v === currentValue ? 'primary' : 'secondary', border: true, corners: 'normal', }),