Skip to content

Commit

Permalink
fix: remove the "," in the replacer
Browse files Browse the repository at this point in the history
  • Loading branch information
chuyan.zhang committed Jul 6, 2023
1 parent e04ea4d commit f651e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class Global {
}
return true
})
const argsString = args?.length ? `,${args?.join(',')}` : ''
const argsString = args?.length ? `${args?.join(',')}` : ''

const customReplacers = customTemplates
.flatMap(i => i.templates)
Expand Down

0 comments on commit f651e1d

Please sign in to comment.