From 83cd354afba84fa455c0e2d81fbff679ab472093 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Wed, 26 Nov 2025 08:47:36 -0800 Subject: [PATCH] fix: update handler parameter in generateAnonymousDownloadUrl to improve code clarity --- convex/builds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convex/builds.ts b/convex/builds.ts index 4fb3ad3..ca1e34a 100644 --- a/convex/builds.ts +++ b/convex/builds.ts @@ -332,7 +332,7 @@ export const generateAnonymousDownloadUrl = mutation({ build: v.object(buildFields), slug: v.string(), }, - handler: async (ctx, args) => { + handler: async (_ctx, args) => { let objectKey = args.build.artifactPath || '' if (objectKey.startsWith('/')) { objectKey = objectKey.substring(1)