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 049493b commit 4c81e5fCopy full SHA for 4c81e5f
npm-packages/scenario-runner/convex/components.ts
@@ -12,14 +12,14 @@ export const componentQuery = query({
12
});
13
14
export const componentMutation = mutation({
15
- args: CACHE_BREAKER_ARGS,
+ args: {},
16
handler: async (ctx) => {
17
return await ctx.runMutation(components.counterComponent.public.increment);
18
},
19
20
21
export const componentAction = action({
22
23
24
const count = Math.floor(Math.random() * 4) + 1;
25
await ctx.runAction(components.counterComponent.public.reset, { count });
0 commit comments