File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ struct GUI: ReducerProtocol {
7474
7575 if let activeTab = state. chatTabGroup. activeChatTab as? ChatGPTChatTab {
7676 return . run { send in
77- await stopAndHandleCommand ( activeTab)
7877 await send ( . openChatPanel( forceDetach: false ) )
78+ await stopAndHandleCommand ( activeTab)
7979 }
8080 }
8181
@@ -85,15 +85,15 @@ struct GUI: ReducerProtocol {
8585 } ) as? ChatGPTChatTab {
8686 state. chatTabGroup. selectedTabId = chatTab. id
8787 return . run { send in
88- await stopAndHandleCommand ( chatTab)
8988 await send ( . openChatPanel( forceDetach: false ) )
89+ await stopAndHandleCommand ( chatTab)
9090 }
9191 }
9292 let chatTab = ChatGPTChatTab ( )
9393 state. chatTabGroup. tabs. append ( chatTab)
9494 return . run { send in
95- await stopAndHandleCommand ( chatTab)
9695 await send ( . openChatPanel( forceDetach: false ) )
96+ await stopAndHandleCommand ( chatTab)
9797 }
9898
9999 case . suggestionWidget:
You can’t perform that action at this time.
0 commit comments