Rename 'chat' to 'thread' in assistant2 (#21141)

Release Notes:

- N/A
This commit is contained in:
Nathan Sobo 2024-11-25 05:27:35 -07:00 committed by GitHub
parent aa58cab766
commit 08b214dfb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 17 deletions

View file

@ -1,5 +1,5 @@
mod assistant_panel;
mod chat_editor;
mod message_editor;
use command_palette_hooks::CommandPaletteFilter;
use feature_flags::{Assistant2FeatureFlag, FeatureFlagAppExt};
@ -7,7 +7,7 @@ use gpui::{actions, AppContext};
pub use crate::assistant_panel::AssistantPanel;
actions!(assistant2, [ToggleFocus, NewChat, ToggleModelSelector]);
actions!(assistant2, [ToggleFocus, NewThread, ToggleModelSelector]);
const NAMESPACE: &str = "assistant2";