Skip to content

Commit

Permalink
fix: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wendellguimaraes-tlf committed Feb 18, 2025
1 parent 567a162 commit 95760e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Chip = (props: ChipProps): JSX.Element => {
{Icon && (
<div
className={
!!props.active
props.active
? isTouchable
? overInverse
? styles.iconNavigationInverse
Expand Down Expand Up @@ -120,7 +120,7 @@ const Chip = (props: ChipProps): JSX.Element => {
<div
className={classnames(
styles.chipVariants[
!!props.active
props.active
? isTouchable
? overInverse
? 'navigationActiveInverse'
Expand Down

0 comments on commit 95760e8

Please sign in to comment.