mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
fix picture reference
This commit is contained in:
parent
b178871bd7
commit
23b8bb4459
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ const Header: FC<HeaderProps> = ({ includeSidebar, data }) => {
|
|||
{userName && (
|
||||
<>
|
||||
<IconButton color="inherit" onClick={handleMenuOpen}>
|
||||
<Avatar name={userName} url={get(data, 'claims.picture', null)} />
|
||||
<Avatar name={userName} url={get(data, 'user.claims.picture', null)} />
|
||||
</IconButton>
|
||||
<Menu
|
||||
onClose={handleMenuClose}
|
||||
|
|
Loading…
Add table
Reference in a new issue