Skip to content

Commit c6b77fa

Browse files
committed
Fix lint error
1 parent de837ed commit c6b77fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15773,7 +15773,7 @@ namespace ts {
1577315773
// type variable. If there is more than one naked type variable, give lower priority to
1577415774
// the inferences as they are less specific.
1577515775
if (typeVariableCount > 0) {
15776-
const unmatched = flatMap(sources, (s, i) => matched![i] ? undefined : s);
15776+
const unmatched = flatMap(sources, (s, i) => matched[i] ? undefined : s);
1577715777
if (unmatched.length) {
1577815778
const s = getUnionType(unmatched);
1577915779
const savePriority = priority;

0 commit comments

Comments
 (0)