Skip to content

Commit 7a85b9e

Browse files
Fix lint
1 parent 725f549 commit 7a85b9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/components/Header/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ const Header = ({ profile }) => {
3939

4040
let normalizedProfile = profile && _.clone(profile);
4141
if (profile) {
42-
normalizedProfile.photoURL = (_.has(profile, 'photoURL') && profile.photoURL !== null) ?
43-
`${config.CDN.PUBLIC}/avatar/${encodeURIComponent(profile.photoURL)}?size=32` : '';
42+
normalizedProfile.photoURL = (_.has(profile, 'photoURL') && profile.photoURL !== null)
43+
? `${config.CDN.PUBLIC}/avatar/${encodeURIComponent(profile.photoURL)}?size=32` : '';
4444
} else {
4545
normalizedProfile = null;
4646
}

0 commit comments

Comments
 (0)