From e3ef852ecad1fa1ceb70bf1bedd49765234acf24 Mon Sep 17 00:00:00 2001 From: Fusion Date: Wed, 20 May 2026 11:30:01 +0200 Subject: [PATCH] fix: add missing repository_id and project_id to Session type in state The state/sessions.tsx Session interface was missing repository_id and project_id fields that were added to api/sessions.ts in the previous commit. This caused a TypeScript build error when the app-shell tried to pass API sessions to the state context. --- apps/web/src/state/sessions.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/state/sessions.tsx b/apps/web/src/state/sessions.tsx index 0760515..e9a4c56 100644 --- a/apps/web/src/state/sessions.tsx +++ b/apps/web/src/state/sessions.tsx @@ -7,7 +7,9 @@ export interface Session { tool_icon: string; tool_type_interfaces: string[]; repository_name: string; + repository_id: string; project_name: string; + project_id: string; status: string; url: string | null; }