We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725f549 commit 7a85b9eCopy full SHA for 7a85b9e
src/shared/components/Header/index.jsx
@@ -39,8 +39,8 @@ const Header = ({ profile }) => {
39
40
let normalizedProfile = profile && _.clone(profile);
41
if (profile) {
42
- normalizedProfile.photoURL = (_.has(profile, 'photoURL') && profile.photoURL !== null) ?
43
- `${config.CDN.PUBLIC}/avatar/${encodeURIComponent(profile.photoURL)}?size=32` : '';
+ normalizedProfile.photoURL = (_.has(profile, 'photoURL') && profile.photoURL !== null)
+ ? `${config.CDN.PUBLIC}/avatar/${encodeURIComponent(profile.photoURL)}?size=32` : '';
44
} else {
45
normalizedProfile = null;
46
}
0 commit comments