style: cargo fmt

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Hunter Bown
2026-06-10 16:40:23 -07:00
parent 4af5a68591
commit f4789a637c
+1 -3
View File
@@ -390,9 +390,7 @@ pub(crate) fn handle_mouse_event(app: &mut App, mouse: MouseEvent) -> Vec<ViewEv
if let Some(action) = sidebar_click_action(app, mouse) {
use crate::tui::views::CommandPaletteAction;
return vec![ViewEvent::CommandPaletteSelected {
action: CommandPaletteAction::ExecuteCommand {
command: action,
},
action: CommandPaletteAction::ExecuteCommand { command: action },
}];
}