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