(directory: string, projects: Project[])
| 141 | } |
| 142 | |
| 143 | function projectID(directory: string, projects: Project[]) { |
| 144 | return projects.find((project) => project.worktree === directory || project.sandboxes?.includes(directory))?.id |
| 145 | } |
| 146 | |
| 147 | function mergeSession(setStore: SetStoreFunction<State>, session: Session) { |
| 148 | setStore("session", (list) => { |
no test coverage detected