Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
somebody1234 committed Sep 26, 2023
1 parent 3426c59 commit b057b28
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ function CategorySwitcherItem(props: InternalCategorySwitcherItemProps) {
const { active = false, disabled = false, hidden, image, name, iconClassName, onClick } = props
return (
<div
className={`group flex items-center rounded-full gap-2 h-8 px-2 ${hidden ? 'hidden' : ''} ${
active ? 'bg-frame-selected' : 'text-not-selected'
} ${
className={`group flex items-center rounded-full gap-2 h-8 px-2 ${
hidden ? 'hidden' : ''
} ${active ? 'bg-frame-selected' : 'text-not-selected'} ${
disabled
? ''
: 'hover:text-primary hover:bg-frame-selected cursor-pointer hover:opacity-100'
Expand Down

0 comments on commit b057b28

Please sign in to comment.