coming soon

This commit is contained in:
Chris Wanstrath 2025-10-02 14:18:50 -07:00
parent 93a9ce9c8c
commit fb657c5bb1

View File

@ -18,6 +18,10 @@ export function handleSessionUpdate(msg: Message) {
} }
if (data.cwd) { if (data.cwd) {
projectCwd.textContent = data.cwd projectCwd.textContent = displayProjectPath(data.cwd)
} }
} }
function displayProjectPath(path: string): string {
return path
}