From 66c75ff87fec2c3d61f13c2b9cf881d790fd30c2 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Thu, 2 Oct 2025 14:45:20 -0700 Subject: [PATCH] update cwd when project changes --- src/js/session.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/session.ts b/src/js/session.ts index a40f3f7..fd7b99b 100644 --- a/src/js/session.ts +++ b/src/js/session.ts @@ -32,6 +32,7 @@ export function handleSessionUpdate(msg: SessionUpdateMessage) { function updateProjectName(project: string) { sessionStore.set("project", project) projectName.textContent = project + updateCwd("/") } function updateCwd(cwd: string) {