Skip to content

Commit a619891

Browse files
Fix message repeated twice in translation params
Co-authored-by: Morgan Chang <[email protected]>
1 parent dee8097 commit a619891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/languageservice/services/yamlCodeActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export class YamlCodeActions {
233233
const rewriter = new FlowStyleRewriter(this.indentation);
234234
results.push(
235235
CodeAction.create(
236-
l10n.t('Convert to block style {0}', 'Convert to block style {0}', blockTypeDescription),
236+
l10n.t('Convert to block style {0}', blockTypeDescription),
237237
createWorkspaceEdit(document.uri, [TextEdit.replace(diagnostic.range, rewriter.write(node))]),
238238
CodeActionKind.QuickFix
239239
)

0 commit comments

Comments
 (0)