We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46fc372 commit 26123afCopy full SHA for 26123af
1 file changed
apps/web/src/components/Sidebar.tsx
@@ -702,7 +702,8 @@ export default function Sidebar() {
702
if (!api) return;
703
const thread = threads.find((t) => t.id === threadId);
704
if (!thread) return;
705
- const threadWorkspacePath = thread.worktreePath ?? projectCwdById.get(thread.projectId) ?? null;
+ const threadWorkspacePath =
706
+ thread.worktreePath ?? projectCwdById.get(thread.projectId) ?? null;
707
const clicked = await api.contextMenu.show(
708
[
709
{ id: "rename", label: "Rename thread" },
0 commit comments