(queryClient: QueryClient)
| 74 | * Use on hover to warm data before navigation. |
| 75 | */ |
| 76 | export function prefetchSubscriptionData(queryClient: QueryClient) { |
| 77 | queryClient.prefetchQuery({ |
| 78 | queryKey: subscriptionKeys.user(false), |
| 79 | queryFn: ({ signal }) => fetchSubscriptionData(false, signal), |
| 80 | staleTime: 5 * 60 * 1000, |
| 81 | }) |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Prefetch the billing queries the Upgrade page gates on: the |
no test coverage detected