Skip to content

Commit

Permalink
ci(lint): auto-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 22, 2025
1 parent 9eeab0c commit 8dfbbc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typescript-plugin/lib/requests/componentInfos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ function generateCommentMarkdown(parts: ts.SymbolDisplayPart[], jsDocTags: ts.JS
const parsedComment = _symbolDisplayPartsToMarkdown(parts);
const parsedJsDoc = _jsDocTagInfoToMarkdown(jsDocTags);
const content = [parsedComment, parsedJsDoc].filter(str => !!str).join('\n\n');
const deprecated = jsDocTags.some((tag) => tag.name === 'deprecated');
const deprecated = jsDocTags.some(tag => tag.name === 'deprecated');
return {
content,
deprecated
Expand Down

0 comments on commit 8dfbbc0

Please sign in to comment.