Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 57caa77

Browse files
committed
Remove 'Add Comment' from tree view actions
**Correct UX: Comments belong in diff view, not tree actions** **Removed:** 💬 Add Comment button from tree view Actions section **Rationale:** - Comments should be triggered from diff view on specific lines - Tree view actions are for overall review decisions - Keeps tree view focused on high-level review actions **Remaining tree view actions:** - ✅ Request Changes - 📝 Checkpoint Work - ↩️ Close Review **Next:** Implement inline commenting in diff view for line-specific feedback
1 parent 0a47ece commit 57caa77

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

extension/src/syntheticPRTreeProvider.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,6 @@ export class SyntheticPRTreeProvider implements vscode.TreeDataProvider<PRTreeIt
177177
if (element.itemType === 'actions') {
178178
// Show feedback actions
179179
return Promise.resolve([
180-
new PRTreeItem(
181-
'💬 Add Comment',
182-
vscode.TreeItemCollapsibleState.None,
183-
'action',
184-
{ action: 'comment' }
185-
),
186180
new PRTreeItem(
187181
'✅ Request Changes',
188182
vscode.TreeItemCollapsibleState.None,

0 commit comments

Comments
 (0)