()
| 25 | const queryClient = new QueryClient() |
| 26 | |
| 27 | function IsMutating() { |
| 28 | const isMutating = useIsMutating() |
| 29 | |
| 30 | createRenderEffect(() => { |
| 31 | isMutatingArray.push(isMutating()) |
| 32 | }) |
| 33 | |
| 34 | return null |
| 35 | } |
| 36 | |
| 37 | function Mutations() { |
| 38 | const { mutate: mutate1 } = useMutation(() => ({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…