fix: restore workspace nav and correct overview spot fallback

This commit is contained in:
Bu5hm4nn
2026-03-24 20:54:45 +01:00
parent 75f8e0a282
commit 2cbe4f274d
4 changed files with 74 additions and 7 deletions

View File

@@ -23,6 +23,10 @@ def nav_items(workspace_id: str | None = None) -> list[tuple[str, str, str]]:
return NAV_ITEMS
return [
("overview", f"/{workspace_id}", "Overview"),
("hedge", "/hedge", "Hedge Analysis"),
("options", "/options", "Options Chain"),
("backtests", "/backtests", "Backtests"),
("event-comparison", "/event-comparison", "Event Comparison"),
("settings", f"/{workspace_id}/settings", "Settings"),
]