We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b903d2e commit 7cc0703Copy full SHA for 7cc0703
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@convex-dev/react-query",
3
- "version": "0.0.0-alpha.9",
+ "version": "0.0.0-alpha.11",
4
"license": "Apache-2.0",
5
"type": "module",
6
"scripts": {
src/index.ts
@@ -366,7 +366,7 @@ export class ConvexQueryClient {
366
if (isConvexAction(context.queryKey)) {
367
const [_, func, args] = context.queryKey;
368
if (isServer) {
369
- return await this.convexClient.action(func, args);
+ return await this.serverHttpClient!.action(func, args);
370
} else {
371
return await this.convexClient.action(func, args);
372
}
0 commit comments