register update

This commit is contained in:
Samandar Turgunboyev
2026-03-18 17:56:26 +05:00
parent a34cf75c57
commit 22c1688781
31 changed files with 631 additions and 1080 deletions

View File

@@ -18,9 +18,7 @@ export function RefreshProvider({ children }: { children: React.ReactNode }) {
setRefreshing(true);
try {
await queryClient.refetchQueries();
} catch (err) {
console.error('Global refresh error:', err);
} finally {
} catch (err) { } finally {
setRefreshing(false);
}
}, [queryClient, refreshing]);