mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-08 17:16:25 +01:00
Very embarrassing mistake
Why do I even name such bad variable names
This commit is contained in:
parent
fa1769c3c2
commit
735cbf05b7
1 changed files with 3 additions and 3 deletions
|
@ -113,11 +113,11 @@ function Notification({ notification }) {
|
||||||
<Avatar
|
<Avatar
|
||||||
url={account.avatarStatic}
|
url={account.avatarStatic}
|
||||||
size={
|
size={
|
||||||
accounts < 10
|
_accounts.length < 10
|
||||||
? 'xl'
|
? 'xl'
|
||||||
: accounts < 100
|
: _accounts.length < 100
|
||||||
? 'l'
|
? 'l'
|
||||||
: accounts < 1000
|
: _accounts.length < 1000
|
||||||
? 'm'
|
? 'm'
|
||||||
: 's' // My god, this person is popular!
|
: 's' // My god, this person is popular!
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue