disable retry feature of react query (#352)

This commit is contained in:
Salih Altun
2024-05-21 21:22:02 +03:00
committed by GitHub
parent f86097fc78
commit ff5d91ce48

View File

@@ -4,6 +4,7 @@ const queryClient = new QueryClient({
defaultOptions: {
queries: {
staleTime: Infinity,
retry: false,
},
},
});