Skip to content

Commit 2b8c45d

Browse files
fix(conversation_selector): allow conversations without titles (#3232)
1 parent aa5b679 commit 2b8c45d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/forge_main/src/conversation_selector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ impl ConversationSelector {
3232
// Filter to conversations with titles and context
3333
let valid_conversations: Vec<&Conversation> = conversations
3434
.iter()
35-
.filter(|c| c.title.is_some() && c.context.is_some())
35+
.filter(|c| c.context.is_some())
3636
.collect();
3737

3838
if valid_conversations.is_empty() {

0 commit comments

Comments
 (0)