style(desktop): satisfy lint across PR-touched files

This commit is contained in:
Brooklyn Nicholson
2026-06-04 00:22:17 -05:00
parent 5bb7156949
commit 38acced687
9 changed files with 14 additions and 0 deletions
+2
View File
@@ -62,6 +62,7 @@ export function mergeSessionPage(
}
const incomingIds = new Set(incoming.map(session => session.id))
const survivors = previous.filter(
session =>
!incomingIds.has(session.id) &&
@@ -164,6 +165,7 @@ function armSessionWatchdog(sessionId: string) {
const timer = setTimeout(() => {
sessionWatchdogTimers.delete(sessionId)
// Re-check the latest state at fire-time. If the user already navigated
// away or the session genuinely finished, the timer is a no-op.
if ($workingSessionIds.get().includes(sessionId)) {