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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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