Skip to content

Commit

Permalink
fix(RouteList): add state-layer back to card (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
incognitojam authored Feb 9, 2025
1 parent 5663b5c commit 8eafce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/material/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const Card: ParentComponent<CardProps> = (props) => {
<ButtonBase
class={clsx(
cardStyle,
props.href || props.onClick && 'state-layer',
(props.href || props.onClick) && 'state-layer',
props.class,
)}
onClick={props.onClick}
Expand Down

0 comments on commit 8eafce9

Please sign in to comment.