Browse Source
Merge pull request #169 from Empact/feature/friends
Fix some whitespace lint errors on the friends feature
renovate/lint-staged-8.x
JimmyMow
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
13 additions and
18 deletions
-
app/components/Contacts/ContactModal.js
|
|
@ -55,12 +55,7 @@ const ContactModal = ({ |
|
|
|
<div className={`${styles.status} ${channel.active && styles.online}`}> |
|
|
|
<FaCircle style={{ verticalAlign: 'top' }} /> |
|
|
|
<span> |
|
|
|
{ |
|
|
|
channel.active ? |
|
|
|
'Online' |
|
|
|
: |
|
|
|
'Offline' |
|
|
|
} |
|
|
|
{channel.active ? 'Online' : 'Offline'} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div className={styles.closeContainer}> |
|
|
|