We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d2710 commit 380cffcCopy full SHA for 380cffc
Core/Sources/Service/GUI/GraphicalUserInterfaceController.swift
@@ -325,10 +325,9 @@ public final class GraphicalUserInterfaceController {
325
}
326
327
suggestionDependency.suggestionWidgetDataSource = widgetDataSource
328
- suggestionDependency.onOpenChatClicked = { [weak self] in
329
- Task { [weak self] in
330
- await self?.store.send(.createAndSwitchToChatGPTChatTabIfNeeded).finish()
331
- self?.store.send(.openChatPanel(forceDetach: false, activateThisApp: true))
+ suggestionDependency.onOpenChatClicked = {
+ Task {
+ PseudoCommandHandler().openChat(forceDetach: false, activateThisApp: true)
332
333
334
suggestionDependency.onOpenModificationButtonClicked = {
0 commit comments