Files
App/constants/query-client.ts
Violet Caulfield abb61a42a4 should be able to add a track to a playlist now
also moar haptic feedback all around
2025-02-05 18:57:57 -06:00

9 lines
215 B
TypeScript

import { QueryClient } from "@tanstack/react-query";
export const queryClient = new QueryClient({
defaultOptions: {
queries: {
gcTime: (1000 * 60 * 24 * 24) * 5 // 5 days
}
}
});