Skip to content

Commit 23b3570

Browse files
authored
fix(agent): removes mentioning of profile (#2436)
1 parent c40d857 commit 23b3570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/chat-cli/src/cli/chat/skim_integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ pub fn select_context_paths_with_skim(context_manager: &ContextManager) -> Resul
165165

166166
// Get profile-specific paths
167167
for path in &context_manager.paths {
168-
all_paths.push(format!("(profile: {}) {}", context_manager.current_profile, path));
168+
all_paths.push(format!("(agent: {}) {}", context_manager.current_profile, path));
169169
}
170170

171171
if all_paths.is_empty() {

0 commit comments

Comments
 (0)