Change button variant to 'outlined' for active insights in SmartInsightsCard

This commit is contained in:
Mo Tarbin
2026-03-15 23:08:09 -04:00
parent 2947d9aeec
commit 8ea12399d3

View File

@@ -317,7 +317,7 @@ const SmartInsightsCard = ({
return ( return (
<Button <Button
key={insight.id} key={insight.id}
variant={isActive ? 'solid' : 'soft'} variant={isActive ? 'outlined' : 'soft'}
color='neutral' color='neutral'
onClick={() => handleInsightClick(insight)} onClick={() => handleInsightClick(insight)}
sx={{ sx={{