Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,6 @@ default = [
"allow_ignoring_input_suggestions",
"mcp_oauth",
"expand_edit_to_pane",
"fallback_model_load_output_messaging",
"api_key_management",
"summarization_cancellation_confirmation",
"ui_zoom",
Expand Down Expand Up @@ -922,7 +921,6 @@ ai_context_menu_commands = []
preview_channel = []
ai_context_menu_code = []
expand_edit_to_pane = []
fallback_model_load_output_messaging = []
profiles_design_revamp = []
search_codebase_ui = []
linked_code_blocks = []
Expand Down
3 changes: 0 additions & 3 deletions app/src/ai/blocklist/block/status_bar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1130,9 +1130,6 @@ fn resolve_fallback_warping_message<V: View>(
model: &dyn AIBlockModel<View = V>,
app: &AppContext,
) -> Option<String> {
if !FeatureFlag::FallbackModelLoadOutputMessaging.is_enabled() {
return None;
}
let mut is_fallback = current_is_fallback;
let mut display_name = current_display_name;
let is_new_user_query = model
Expand Down
2 changes: 0 additions & 2 deletions app/src/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,6 @@ fn enabled_features() -> HashSet<FeatureFlag> {
FeatureFlag::AIContextMenuCode,
#[cfg(feature = "expand_edit_to_pane")]
FeatureFlag::ExpandEditToPane,
#[cfg(feature = "fallback_model_load_output_messaging")]
FeatureFlag::FallbackModelLoadOutputMessaging,
#[cfg(feature = "tab_close_button_on_left")]
FeatureFlag::TabCloseButtonOnLeft,
#[cfg(feature = "profiles_design_revamp")]
Expand Down
2 changes: 0 additions & 2 deletions crates/warp_features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,6 @@ pub enum FeatureFlag {

/// Expands code diff edits to replace the current pane instead of opening in a new tab.
ExpandEditToPane,
/// Enables fallback model load output messaging in the warping indicator.
FallbackModelLoadOutputMessaging,

/// Enables close button on left side of tabs
TabCloseButtonOnLeft,
Expand Down
Loading