feat: add user profile settings and UI enhancements

This commit is contained in:
Bryan
2026-04-08 15:07:01 -07:00
parent 53f5f93deb
commit 1565fd52e1
14 changed files with 536 additions and 63 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ export const sessionsApi = {
/** List all queen sessions on disk — live + cold (post-restart). */
history: () =>
api.get<{ sessions: Array<{ session_id: string; cold: boolean; live: boolean; has_messages: boolean; created_at: number; agent_name?: string | null; agent_path?: string | null }> }>("/sessions/history"),
api.get<{ sessions: Array<{ session_id: string; cold: boolean; live: boolean; has_messages: boolean; created_at: number; agent_name?: string | null; agent_path?: string | null; queen_id?: string | null }> }>("/sessions/history"),
/** Permanently delete a history session (stops live session + removes disk files). */
deleteHistory: (sessionId: string) =>