server functions cancellation
i've added
signal.throwIfAborted() to my server function, and then i call it with the router's AbortController instance: but when i navigate to another page while this one loads, i'm getting the following error:
wouldn't it make more sense to simply suppress the error when the cancellation is initiated by the router?
i mean, at that point as a user, you don't care about the result of the function anyway. but the router knows that the function was aborted, so it can expect that error
thanks!