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.
This commit is contained in:
Fusion
2026-05-20 11:30:01 +02:00
parent f824a1e6fe
commit e3ef852eca
+2
View File
@@ -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;
}