From 0dec50cebc80ff2547dae27e95abd76d70b4be39 Mon Sep 17 00:00:00 2001 From: herjarsa Date: Fri, 28 Aug 2026 14:28:09 +0200 Subject: [PATCH] fix(ui): restore async addProject return type after rebase (OPE-142) --- packages/ui/src/stores/useProjectsStore.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/ui/src/stores/useProjectsStore.ts b/packages/ui/src/stores/useProjectsStore.ts index 83f618b0..f7398967 100644 --- a/packages/ui/src/stores/useProjectsStore.ts +++ b/packages/ui/src/stores/useProjectsStore.ts @@ -49,12 +49,8 @@ interface ProjectsStore { activeProjectId: string | null; manualProjectOrder: string[]; -<<<<<<< HEAD addProject: (path: string, options?: { label?: string; id?: string }) => Promise; -======= - 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;