Skip to content

Commit a9ab8df

Browse files
committed
prettier check
1 parent 674ce0e commit a9ab8df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/edit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ async function applyStructuralCommentsToSingleSelectionLines(
160160
const rawInsertionColumn =
161161
affectedLineNumbers.length > 1
162162
? resolvedAlignedCommentColumn
163-
: (originalInsertionColumnMap.get(lineNum) ?? firstNonWhitespace);
163+
: originalInsertionColumnMap.get(lineNum) ?? firstNonWhitespace;
164164
const firstLineInsertionColumn =
165165
partialSelectionStartColumn !== undefined && lineNum === singleSelection.start.line
166166
? Math.max(rawInsertionColumn, partialSelectionStartColumn)

0 commit comments

Comments
 (0)