One-digit unread badges should be round

This commit is contained in:
Evan Hahn 2021-10-28 15:20:52 -05:00 committed by GitHub
parent 17c0867e9d
commit da3c7c7f3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View file

@ -240,8 +240,6 @@ function UnreadIndicator({ count = 0 }: Readonly<{ count?: number }>) {
classModifier = 'many';
} else if (count > 9) {
classModifier = 'two-digits';
} else if (count === 0) {
classModifier = 'marked-unread';
}
return (