Component
List
Problem
File: List.tsx line 34
Interactive is hardcoded to false in className:
const classNames = cn(
className,
{ gap, shape, variant, interactive: false }, // Always false!
styles
);
But interactive prop exists and should be used.
Suggested Fix
{ gap, shape, variant, interactive },
Impact
Bug - interactive prop has no effect
Component
List
Problem
File: List.tsx line 34
Interactive is hardcoded to false in className:
But
interactiveprop exists and should be used.Suggested Fix
Impact
Bug - interactive prop has no effect