serverFn signal is always aborted on POST?
I have this server function:
which I called with a standard queryFn:
So far so good. when the query is called it logs aborted: false as expected. However, if I switch method to "POST", something weird happens:
On the first fetch, when called in a loader from the server, aborted is still false. But when I refetch the query from the client, I see aborted: true. Is this a bug?
which I called with a standard queryFn:
So far so good. when the query is called it logs aborted: false as expected. However, if I switch method to "POST", something weird happens:
On the first fetch, when called in a loader from the server, aborted is still false. But when I refetch the query from the client, I see aborted: true. Is this a bug?