🐛 Fixing usernames not displaying when editing permissions

This commit is contained in:
Montassar Ghanmy
2024-01-26 09:38:07 +01:00
committed by GitHub
parent c09a1be87f
commit 2d78a26051
@@ -18,7 +18,7 @@ export const useUser = (userId: string): UserType | undefined => {
const refresh = async () => {
setLoading(true);
UserAPIClient.list([userId], undefined, {
bufferize: true,
bufferize: false,
callback: () => {
setLoading(false);
},