clear cookie onError
I'd like to clear a cookie (in nextjs) when a 403 error happens. I've been looking at the global error handling: https://trpc.io/docs/error-handling#handling-errors
and this looks like the right place, except that I don't have access to the
and this looks like the right place, except that I don't have access to the
response , which would be needed to clear a cookie. Is there a better place to do this, or is there a reason there is no access to the res ?Whenever an error occurs in a procedure, tRPC responds to the client with an object that includes an "error" property. This property contains all the information that you need to handle the error in the client.
