Skip to content

Commit a7be658

Browse files
committed
fix(triggers): prefix unused type param in buildTags
1 parent e76721c commit a7be658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/lib/core/async-jobs/backends/trigger-dev.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class TriggerDevJobQueue implements JobQueueBackend {
128128
* Tags follow the `namespace:value` convention for consistent filtering.
129129
* Max 10 tags per run, each max 128 chars.
130130
*/
131-
function buildTags(type: JobType, options?: EnqueueOptions): string[] {
131+
function buildTags(_type: JobType, options?: EnqueueOptions): string[] {
132132
const tags: string[] = []
133133
const meta = options?.metadata
134134

0 commit comments

Comments
 (0)