We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa48b94 commit b6db33aCopy full SHA for b6db33a
site/src/pages/UsersPage/UsersPage.tsx
@@ -25,14 +25,14 @@ export const UsersPage: React.FC = () => {
25
26
if (!users) {
27
return <FullScreenLoader />
28
+ } else {
29
+ return (
30
+ <UsersPageView
31
+ users={users}
32
+ openUserCreationDialog={() => {
33
+ navigate("/users/create")
34
+ }}
35
+ />
36
+ )
37
}
-
- return (
- <UsersPageView
- users={users}
- openUserCreationDialog={() => {
- navigate("/users/create")
- }}
- />
- )
38
0 commit comments