From 2d78a260514e43122b5e157e5efb8c9d088f6bd2 Mon Sep 17 00:00:00 2001 From: Montassar Ghanmy Date: Fri, 26 Jan 2024 09:38:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixing=20usernames=20not=20displ?= =?UTF-8?q?aying=20when=20editing=20permissions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tdrive/frontend/src/app/features/users/hooks/use-user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrive/frontend/src/app/features/users/hooks/use-user.ts b/tdrive/frontend/src/app/features/users/hooks/use-user.ts index 0301ebc1..43b269ce 100644 --- a/tdrive/frontend/src/app/features/users/hooks/use-user.ts +++ b/tdrive/frontend/src/app/features/users/hooks/use-user.ts @@ -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); },