diff --git a/src/runtime/client.ts b/src/runtime/client.ts index f2f4a90..2f80863 100644 --- a/src/runtime/client.ts +++ b/src/runtime/client.ts @@ -40,7 +40,7 @@ export function createNuxtProxyDecoration(name: strin const queryKey = getQueryKey(path, input) if (lastArg === 'mutate') { - return useAsyncData(queryKey, () => (client as any)[path][lastArg](input), { + return useAsyncData(() => (client as any)[path][lastArg](input), { ...asyncDataOptions as Record, immediate: false, })