Skip to content

Commit

Permalink
fix: button label
Browse files Browse the repository at this point in the history
  • Loading branch information
ogonkov committed May 31, 2024
1 parent cbd9802 commit f8be527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AvatarStack/AvatarStackMoreButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const AvatarStackMoreButton = React.forwardRef<HTMLButtonElement, Props>(
({className, size = DEFAULT_AVATAR_SIZE, onClick, count, 'aria-label': ariaLabel}, ref) => {
return (
<button ref={ref} className={b('more-button', {size}, className)} onClick={onClick}>
<Avatar text={`+${count}`} size={size} alt={ariaLabel} />
<Avatar text={`+${count}`} size={size} aria-label={ariaLabel} />
</button>
);
},
Expand Down

0 comments on commit f8be527

Please sign in to comment.