chore(app): clarify session tab debug log

This commit is contained in:
Luke Parker
2026-08-11 07:48:29 +00:00
parent 2f48e351a8
commit b2846b5984
+1
View File
@@ -351,6 +351,7 @@ export const { use: useTabs, provider: TabsProvider } = createSimpleContext({
const key = tabKey(tab)
const next = { title: session.title, directory: session.location.directory }
const current = info[key]
console.debug("[tabs] remember session info", { key, sessionID: session.id, current, next })
if (current && current.title === next.title && current.directory === next.directory) return
setInfo(key, next)
},