fix: update handler parameter in generateAnonymousDownloadUrl to improve code clarity

This commit is contained in:
Ben Allfree
2025-11-26 08:47:36 -08:00
parent 034f9fcc61
commit 83cd354afb

View File

@@ -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)