Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ogonkov committed Jul 17, 2024
1 parent 978c295 commit 8e6b0f1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/AvatarStack/AvatarStackMoreButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ export const AvatarStackMoreButton = React.forwardRef<
AvatarStackMoreButtonProps
>(({className, size = DEFAULT_AVATAR_SIZE, onClick, count, 'aria-label': ariaLabel}, ref) => {
return (
<button ref={ref} type="button" className={b('more-button', {size}, className)} onClick={onClick}>
<button
ref={ref}
type="button"
className={b('more-button', {size}, className)}
onClick={onClick}
>
<Avatar
text={`+${count}`}
size={size}
Expand Down

0 comments on commit 8e6b0f1

Please sign in to comment.