Skip to content

Commit 7bbf9f6

Browse files
committed
lint
1 parent f1b1446 commit 7bbf9f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/convex/userConfirmation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const confirmationWorkflow = workflow.define({
3232

3333
export const generateProposals = internalAction({
3434
args: { prompt: v.string() },
35-
handler: async (ctx, args) => {
35+
handler: async (_ctx, _args) => {
3636
// imagine this is a call to an LLM
3737
return ["proposal1", "proposal2", "proposal3"];
3838
},

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { RunResult } from "@convex-dev/workpool";
2-
import { v, type Validator, type VNull, type VString } from "convex/values";
2+
import { v, type Validator, type VString } from "convex/values";
33

44
export type WorkflowId = string & { __isWorkflowId: true };
55
export const vWorkflowId = v.string() as VString<WorkflowId>;

0 commit comments

Comments
 (0)