mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 02:46:30 +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 && (
|
{userName && (
|
||||||
<>
|
<>
|
||||||
<IconButton color="inherit" onClick={handleMenuOpen}>
|
<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>
|
</IconButton>
|
||||||
<Menu
|
<Menu
|
||||||
onClose={handleMenuClose}
|
onClose={handleMenuClose}
|
||||||
|
|
Loading…
Add table
Reference in a new issue