diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2020-02-11 21:49:19 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2020-02-11 21:49:19 +0100 |
commit | 465f7ca73d7093eeeecb6553c804d8cfb06e6652 (patch) | |
tree | 28a19ae87252e776efa3bd0bb94b154131b866d7 /webui/src/CurrentIdentity.tsx | |
parent | 1effc91556c4567673c68329722bd415ec648a12 (diff) | |
download | git-bug-465f7ca73d7093eeeecb6553c804d8cfb06e6652.tar.gz |
webui: stop using defaultRepository
Diffstat (limited to 'webui/src/CurrentIdentity.tsx')
-rw-r--r-- | webui/src/CurrentIdentity.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/CurrentIdentity.tsx b/webui/src/CurrentIdentity.tsx index 5b8fcbb9..256f44c4 100644 --- a/webui/src/CurrentIdentity.tsx +++ b/webui/src/CurrentIdentity.tsx @@ -14,9 +14,9 @@ const CurrentIdentity = () => { const classes = useStyles(); const { loading, error, data } = useCurrentIdentityQuery(); - if (error || loading || !data?.defaultRepository?.userIdentity) return null; + if (error || loading || !data?.repository?.userIdentity) return null; - const user = data.defaultRepository.userIdentity; + const user = data.repository.userIdentity; return ( <> <Avatar src={user.avatarUrl ? user.avatarUrl : undefined}> |