fix: respect Pi session directories by cwd

This commit is contained in:
Federico Jaramillo Martinez
2026-06-10 20:26:51 +02:00
parent 3330a5a7fa
commit 06052ea5ec
22 changed files with 583 additions and 252 deletions
+5 -2
View File
@@ -86,10 +86,13 @@ export interface Workspace {
isGitWorktree: boolean;
}
export interface SessionInfo {
export interface SessionRef {
id: string;
path: string;
cwd: string;
}
export interface SessionInfo extends SessionRef {
path: string;
name?: string;
created: string;
modified: string;