diff options
author | Vitaly Takmazov | 2018-07-06 01:57:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 91faf0911184bb430170d021195d008b977e0ac4 (patch) | |
tree | d1522c0c9e1d80814c032bd586c06bbd55ef7843 /vnext/src/components/Contact.js | |
parent | f62afd8a08d6e5dfdba7eb62d54655bc634e211c (diff) |
Fix lint and prototypes warnings
Diffstat (limited to 'vnext/src/components/Contact.js')
-rw-r--r-- | vnext/src/components/Contact.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Contact.js b/vnext/src/components/Contact.js index 01dd1ae6..215f579b 100644 --- a/vnext/src/components/Contact.js +++ b/vnext/src/components/Contact.js @@ -9,7 +9,7 @@ export default class Contact extends React.Component { const { user } = this.props; return ( <React.Fragment> - <Avatar user={user} link={`/pm/${user.uname}`} /> + <Avatar user={user} link={`/pm/${user.uname}`} /> {user.uname }{ user.unreadCount && <span className="badge">{user.unreadCount}</span>} </React.Fragment> ); |