clean up and fix errors

This commit is contained in:
Ren Amamiya
2023-04-19 08:50:32 +07:00
parent c72798507e
commit 697caca77b
13 changed files with 83 additions and 78 deletions

View File

@@ -31,7 +31,7 @@ export default function MultiAccounts() {
useEffect(() => {
getAccounts()
.then((res) => setUsers(res))
.then((res: any) => setUsers(res))
.catch(console.error);
}, []);