We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57172e2 commit 7d5a215Copy full SHA for 7d5a215
src/app/views/authentication/profile/Profile.tsx
@@ -149,6 +149,7 @@ const SignedInButton = forwardRef<
149
>((props, ref) => {
150
const styles = useHeaderStyles();
151
const user = useAppSelector((state) => state.profile.user);
152
+ const imageUrl = user?.profileImageUrl ?? '';
153
154
return (
155
<Tooltip content={translateMessage('sign out')} relationship='description'>
@@ -165,6 +166,11 @@ const SignedInButton = forwardRef<
165
166
name={user?.displayName}
167
className={styles.iconButton}
168
presence={{ status: 'available' }}
169
+ avatar={{
170
+ image: {
171
+ src: imageUrl
172
+ }
173
+ }}
174
/>
175
</Button>
176
</Tooltip>
0 commit comments