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:
@@ -7,7 +7,9 @@ export interface Session {
|
|||||||
tool_icon: string;
|
tool_icon: string;
|
||||||
tool_type_interfaces: string[];
|
tool_type_interfaces: string[];
|
||||||
repository_name: string;
|
repository_name: string;
|
||||||
|
repository_id: string;
|
||||||
project_name: string;
|
project_name: string;
|
||||||
|
project_id: string;
|
||||||
status: string;
|
status: string;
|
||||||
url: string | null;
|
url: string | null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user