diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-20 15:13:10 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-13 19:07:57 +0200 |
commit | 41e85023019bc13c06a1de2c431e0bd920e9e29a (patch) | |
tree | 95ea962e484912538f3b8611d3eb54056bbf3658 /webui/src/components/IfLoggedIn/IfLoggedIn.tsx | |
parent | 998ae348b10efd5af758944143b70125a98e8f86 (diff) | |
download | git-bug-41e85023019bc13c06a1de2c431e0bd920e9e29a.tar.gz |
Use profile page for each identity
Authorcomponent links to the authors profile page.
Replace pofile buglist with statistics
Diffstat (limited to 'webui/src/components/IfLoggedIn/IfLoggedIn.tsx')
-rw-r--r-- | webui/src/components/IfLoggedIn/IfLoggedIn.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/IfLoggedIn/IfLoggedIn.tsx b/webui/src/components/IfLoggedIn/IfLoggedIn.tsx index 2476aad8..ce120da1 100644 --- a/webui/src/components/IfLoggedIn/IfLoggedIn.tsx +++ b/webui/src/components/IfLoggedIn/IfLoggedIn.tsx @@ -1,6 +1,6 @@ import React from 'react'; -import { useCurrentIdentityQuery } from '../CurrentIdentity/CurrentIdentity.generated'; +import { useCurrentIdentityQuery } from '../Identity/CurrentIdentity.generated'; type Props = { children: () => React.ReactNode }; const IfLoggedIn = ({ children }: Props) => { |