Fix misplaced comma in auto imported specifier (#40273)

This commit is contained in:
Andrew Branch
2020-08-31 10:54:53 -07:00
committed by GitHub
parent 97f8b87e34
commit bfb00eb164
2 changed files with 25 additions and 1 deletions

View File

@@ -700,7 +700,7 @@ namespace ts.codefix {
}
else if (existingSpecifiers?.length) {
for (const spec of newSpecifiers) {
changes.insertNodeAtEndOfList(sourceFile, existingSpecifiers, spec);
changes.insertNodeInListAfter(sourceFile, last(existingSpecifiers), spec, existingSpecifiers);
}
}
else {