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 6b3c74b commit 90aa1ceCopy full SHA for 90aa1ce
src/ui/views/UserList/Components/UserList.tsx
@@ -37,7 +37,7 @@ const UserList: React.FC = () => {
37
38
useEffect(() => {
39
getUsers(setIsLoading, setData, setAuth, setErrorMessage);
40
- });
+ }, []);
41
42
if (isLoading) return <div>Loading...</div>;
43
if (errorMessage) return <Danger>{errorMessage}</Danger>;
0 commit comments