fix(ui): restore async addProject return type after rebase (OPE-142)

This commit is contained in:
herjarsa
2026-08-28 16:41:36 +02:00
parent 223849261a
commit 0dec50cebc
@@ -49,12 +49,8 @@ interface ProjectsStore {
activeProjectId: string | null;
manualProjectOrder: string[];
<<<<<<< HEAD
addProject: (path: string, options?: { label?: string; id?: string }) => Promise<ProjectEntry | null>;
=======
addProject: (path: string, options?: { label?: string; id?: string }) => ProjectEntry | null;
addProjects: (paths: string[]) => ProjectEntry[];
>>>>>>> e7506d349 (feat(projects): support adding multiple projects at once in the directory picker)
removeProject: (id: string) => void;
setActiveProject: (id: string) => void;
setActiveProjectIdOnly: (id: string) => void;