Skip to content

Commit

Permalink
fix: remove type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Feb 20, 2022
1 parent bdcbe6d commit baa259b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/run/batchWarnings.ts
Expand Up @@ -242,7 +242,7 @@ const deferredHandlers: {
' imported from external module "' +
warning.source +
'" but never used in ' +
printQuotedStringList((warning.sources as string[]).map(id => relativeId(id)))
printQuotedStringList(warning.sources!.map(id => relativeId(id)))
);
}
}
Expand Down

0 comments on commit baa259b

Please sign in to comment.