diff --git a/src/gitx/widgets/branches_panel.py b/src/gitx/widgets/branches_panel.py index 2964799..27518c2 100644 --- a/src/gitx/widgets/branches_panel.py +++ b/src/gitx/widgets/branches_panel.py @@ -45,7 +45,6 @@ def refresh_branches(self) -> None: node.label.stylize("green bold") node.label = Text("✓ ") + node.label - # Get remote branches remote_branches = [] for branch_info in branches: @@ -71,6 +70,5 @@ def on_tree_node_selected(self, event: Tree.NodeSelected) -> None: if hasattr(node, 'data') and node.data and "branch" in node.data: branch = node.data["branch"] - # Show dialog to confirm checkout or perform related branch action self.app.notify(f"Selected branch: {branch} (checkout not implemented yet)")