From b7f72eac0a24b8bc1631d3203d82153ac189ba16 Mon Sep 17 00:00:00 2001 From: Robert Soriano Date: Mon, 31 Oct 2022 09:53:00 -0700 Subject: [PATCH] feat: respect user added abort signal --- src/client/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/index.ts b/src/client/index.ts index fc073e8..a14402a 100644 --- a/src/client/index.ts +++ b/src/client/index.ts @@ -49,8 +49,8 @@ function createNuxtProxyDecoration(name: string, clie } return useAsyncDataWithError(queryKey, () => (client as any)[path][lastArg](input, { - ...trpc, signal: controller?.signal, + ...trpc, }), asyncDataOptions) }) }