From 7f3df864d7734e9ab6ced1567dfe924edd718018 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 7 Nov 2024 09:57:59 -0300 Subject: [PATCH] Remove unrelated change (this was going to a different branch, oops) --- crates/assistant/src/slash_command/delta_command.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/crates/assistant/src/slash_command/delta_command.rs b/crates/assistant/src/slash_command/delta_command.rs index 672adf4a9de1b..5c8bc2b02309d 100644 --- a/crates/assistant/src/slash_command/delta_command.rs +++ b/crates/assistant/src/slash_command/delta_command.rs @@ -112,17 +112,6 @@ impl SlashCommand for DeltaSlashCommand { } } - // // If no changes detected, add a message section - // if !changes_detected { - // output.sections.push(SlashCommandOutputSection { - // range: 0..0, - // icon: IconName::Info, // Use an appropriate icon - // label: Some("Info".into()), - // metadata: Some(serde_json::json!({"message": "No changes detected"})), - // }); - // output.text.push_str("No changes detected\n"); - // } - Ok(output.to_event_stream()) }) }