Fixed problems with folder select for MCP
This commit is contained in:
@@ -96,9 +96,14 @@ struct ContentView: View {
|
||||
CreditsView(provider: chatViewModel.currentProvider)
|
||||
}
|
||||
.sheet(isPresented: $vm.showConversations) {
|
||||
ConversationListView(onLoad: { conversation in
|
||||
chatViewModel.loadConversation(conversation)
|
||||
})
|
||||
ConversationListView(
|
||||
onLoad: { conversation in
|
||||
chatViewModel.loadConversation(conversation)
|
||||
},
|
||||
onRename: { id, newName in
|
||||
chatViewModel.didRenameConversation(id: id, newName: newName)
|
||||
}
|
||||
)
|
||||
}
|
||||
.sheet(item: $vm.modelInfoTarget) { model in
|
||||
ModelInfoView(model: model)
|
||||
|
||||
Reference in New Issue
Block a user