deletions comment

This commit is contained in:
Andrew 2024-09-17 14:43:15 -07:00
parent b44f575713
commit 25c2c177b2

View file

@ -81,7 +81,7 @@ export class ApprovalCodeLensProvider implements vscode.CodeLensProvider {
const diffs: DiffType[] = []
for (let suggestedEdit of suggestedEdits) {
// TODO we need to account for the case when startLine > endLine (pure inserts)
// TODO we need to account for this case (deletions)
if (suggestedEdit.startLine > suggestedEdit.endLine)
continue