()
| 15 | let clientQueryClient: QueryClient | undefined = undefined; |
| 16 | |
| 17 | const getQueryClient = () => { |
| 18 | if (!clientQueryClient) { |
| 19 | clientQueryClient = makeQueryClient(); |
| 20 | } |
| 21 | return clientQueryClient; |
| 22 | }; |
| 23 | |
| 24 | export const ClientQueryProvider = ({ children }: PropsWithChildren) => { |
| 25 | const queryClient = getQueryClient(); |
no test coverage detected