feat(FN-2092): merge fusion/fn-2092

This commit is contained in:
gsxdsm
2026-04-18 22:07:20 -07:00
parent b0028c077f
commit 4e3e2ca7fe
6 changed files with 115 additions and 8 deletions

View File

@@ -57,7 +57,9 @@ export function useBackgroundSessions(projectId?: string): UseBackgroundSessions
sessionTimestampsRef.current = nextTimestampMap;
setSessions(fetched);
})
.catch(() => {});
.catch((err) => {
console.warn("[useBackgroundSessions] Failed to fetch AI sessions:", err);
});
}, [projectId]);
// Initial load: request state from sibling tabs first, then fetch authoritative API state.