Calendar controls fix

This commit is contained in:
Milan Paunovic
2025-02-14 15:05:42 +01:00
parent f9a5e76162
commit e04441bd81
4 changed files with 354 additions and 25 deletions

View File

@ -8,8 +8,8 @@ import type { AsyncPersistRetryer } from '@tanstack/query-async-storage-persiste
const createQueryClient = () => new QueryClient({
defaultOptions: {
queries: {
gcTime: 1000 * 60 * 60 * 24, // 24 hours
staleTime: 1000 * 60 * 5, // 5 minutes
gcTime: 1000 * 60 * 60 * 24,
staleTime: 1000 * 60 * 5,
retry: 2,
},
},