Add Points view, Don't allow completion outside the completion window, migrate more things to react query

This commit is contained in:
Mo Tarbin
2024-12-31 02:20:52 -05:00
parent d98f4b599f
commit 32583b1a9e
13 changed files with 619 additions and 27 deletions

View File

@@ -54,11 +54,9 @@ const Settings = () => {
setCircleMemberRequests(data.res ? data.res : [])
})
})
GetAllCircleMembers()
.then(res => res.json())
.then(data => {
setCircleMembers(data.res ? data.res : [])
})
GetAllCircleMembers().then(data => {
setCircleMembers(data.res ? data.res : [])
})
}, [])
useEffect(() => {