We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336766d commit 30f52c5Copy full SHA for 30f52c5
1 file changed
apps/editor/src/services/websocket-manager.ts
@@ -329,7 +329,10 @@ export class WebSocketManager {
329
config.get<ConfigPresetFormat[]>(params.presets_config_key) ?? []
330
const gemini_user_id = config.get<number | null>('geminiUserId')
331
const ai_studio_user_id = config.get<number | null>('aiStudioUserId')
332
- const reuse_last_tab = config.get<boolean>('reuseLastTab', false)
+ const reuse_last_tab =
333
+ params.chats.length > 1
334
+ ? false
335
+ : config.get<boolean>('reuseLastTab', false)
336
337
const target_browser_id = await this._select_browser()
338
if (target_browser_id === undefined) {
0 commit comments