summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/app/src/pages/layout.tsx17
1 files changed, 4 insertions, 13 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx
index b692903c6..e58b2b0c7 100644
--- a/packages/app/src/pages/layout.tsx
+++ b/packages/app/src/pages/layout.tsx
@@ -325,19 +325,10 @@ export default function Layout(props: ParentProps) {
createEffect(() => {
if (!pageReady()) return
if (!layoutReady()) return
- const project = currentProject()
- if (!project) return
-
- const enabled = layout.sidebar.workspaces(project.worktree)()
- const dirs = [project.worktree, ...(project.sandboxes ?? [])]
-
- for (const directory of dirs) {
- const expanded = store.workspaceExpanded[directory]
- if (enabled && expanded === undefined) {
- setStore("workspaceExpanded", directory, true)
- } else if (!enabled && expanded) {
- setStore("workspaceExpanded", directory, false)
- }
+ for (const [directory, expanded] of Object.entries(store.workspaceExpanded)) {
+ if (layout.sidebar.workspaces(directory)()) continue
+ if (!expanded) continue
+ setStore("workspaceExpanded", directory, false)
}
})