aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/layout/IfLoggedIn.tsx
diff options
context:
space:
mode:
authorCláudio <claudio.engdist@gmail.com>2021-02-05 19:36:09 -0300
committerCláudio <claudio.engdist@gmail.com>2021-02-05 19:36:09 -0300
commit29ea8df4259921f1789e0e6d584767fc5f54b284 (patch)
tree2d19cf21e033adcbe2e6c018fe6099b4938346ea /webui/src/layout/IfLoggedIn.tsx
parent12323b94398daa6cedca36fc2c58a97200092e16 (diff)
downloadgit-bug-29ea8df4259921f1789e0e6d584767fc5f54b284.tar.gz
Commit for #541
Diffstat (limited to 'webui/src/layout/IfLoggedIn.tsx')
-rw-r--r--webui/src/layout/IfLoggedIn.tsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/webui/src/layout/IfLoggedIn.tsx b/webui/src/layout/IfLoggedIn.tsx
deleted file mode 100644
index 9f4a7576..00000000
--- a/webui/src/layout/IfLoggedIn.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import React from 'react';
-
-import { useCurrentIdentityQuery } from './CurrentIdentity.generated';
-
-type Props = { children: () => React.ReactNode };
-const IfLoggedIn = ({ children }: Props) => {
- const { loading, error, data } = useCurrentIdentityQuery();
-
- if (error || loading || !data?.repository?.userIdentity) return null;
-
- return <>{children()}</>;
-};
-
-export default IfLoggedIn;