fix: Update map with tables fixes

This commit is contained in:
2025-07-09 18:56:18 +03:00
parent 78800ee2ae
commit e2547cb571
87 changed files with 5392 additions and 1410 deletions

View File

@@ -24,8 +24,6 @@ class UserStore {
}
getUsers = async () => {
if (this.users.loaded) return;
const response = await authInstance.get("/user");
runInAction(() => {
@@ -35,7 +33,7 @@ class UserStore {
};
getUser = async (id: number) => {
if (this.user[id]) return;
if (this.user[id]) return this.user[id];
const response = await authInstance.get(`/user/${id}`);
runInAction(() => {