agent: Remove duplicate `OpenConfiguration` action registration (#27918)

Danilo Leal created

I had introduced the same thing a few days ago without noticing there
was one in place already!

Release Notes:

- N/A

Change summary

crates/agent/src/assistant_panel.rs | 6 ------
1 file changed, 6 deletions(-)

Detailed changes

crates/agent/src/assistant_panel.rs 🔗

@@ -88,12 +88,6 @@ pub fn init(cx: &mut App) {
                         });
                     }
                 })
-                .register_action(|workspace, _: &OpenConfiguration, window, cx| {
-                    if let Some(panel) = workspace.panel::<AssistantPanel>(cx) {
-                        workspace.focus_panel::<AssistantPanel>(window, cx);
-                        panel.update(cx, |panel, cx| panel.open_configuration(window, cx));
-                    }
-                })
                 .register_action(|workspace, _: &OpenAgentDiff, window, cx| {
                     if let Some(panel) = workspace.panel::<AssistantPanel>(cx) {
                         workspace.focus_panel::<AssistantPanel>(window, cx);