feat(FN-2188): harden dev server view lifecycle and mobile nav

- Update the dashboard dev-server API client for compatibility with multiple backend response shapes
- Refine useDevServer polling and SSE lifecycle handling to improve status/action reliability
- Gate dev server navigation in header/mobile overflow and fix mobile preview header wrapping styles
- Expand DevServerView and useDevServer test coverage with isolated mocks and log/status assertions
- Document the devServerView experimental feature flag in settings reference
This commit is contained in:
Fusion
2026-04-20 23:07:28 -07:00
committed by gsxdsm
parent 087a67bcaa
commit 7bcc360400
12 changed files with 438 additions and 231 deletions

View File

@@ -27,7 +27,7 @@ function isTaskView(value: string | null): value is TaskView {
}
function normalizeTaskView(value: TaskView): TaskView {
return value === "dev-server" ? "devserver" : value;
return value === "devserver" ? "dev-server" : value;
}
interface UseViewStateOptions {