Skip to content

Commit

Permalink
fix: Item color fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Pinedo committed Oct 3, 2022
1 parent feb99a5 commit 1341a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stories/components/Gallery/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Item: FC<ItemProps> = ({
<StyledContainer>
<StyledSvgWrapperButton
onClick={() => handleClick(item.name, item.tags)}
aria-expanded={isSelected ? null : true}
aria-expanded={!isSelected ? null : true}
>
{children}
</StyledSvgWrapperButton>
Expand Down

0 comments on commit 1341a9f

Please sign in to comment.