We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 227a272 commit 034e6cfCopy full SHA for 034e6cf
1 file changed
auth.ts
@@ -58,6 +58,7 @@ export function createTrpcClient(deployUrl: string) {
58
false: httpBatchStreamLink({
59
url: deployUrl + "/api",
60
fetch: async (url, options) => {
61
+ // deno-lint-ignore no-explicit-any
62
const response = await fetch(url, options as any);
63
if (response.status === 401) {
64
throw TRPCClientError.from({
0 commit comments