From d3f871eba76d9d52eb5b54f89e19beeb6835e786 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sun, 23 Nov 2025 15:35:29 -0800 Subject: [PATCH] refactor: remove unused `_buildId` variable assignment --- convex/builds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convex/builds.ts b/convex/builds.ts index 7cbf986..8c62a51 100644 --- a/convex/builds.ts +++ b/convex/builds.ts @@ -99,7 +99,7 @@ export const triggerBuild = mutation({ if (cached) { // Use cached artifact, skip GitHub workflow const artifactUrl = getR2ArtifactUrl(buildHash); - const _buildId = await ctx.db.insert("builds", { + await ctx.db.insert("builds", { profileId: profile._id, target: target, githubRunId: 0,