Skip to content

Commit 2597197

Browse files
committed
fix(tui): apply Group 3 silent merge fixes — remove stale session.child.first command and redundant Show wrapper
1 parent 2958123 commit 2597197

1 file changed

Lines changed: 4 additions & 17 deletions

File tree

  • packages/opencode/src/cli/cmd/tui/routes/session

packages/opencode/src/cli/cmd/tui/routes/session/index.tsx

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -952,17 +952,6 @@ export function Session() {
952952
dialog.clear()
953953
},
954954
},
955-
{
956-
title: "Go to child session",
957-
value: "session.child.first",
958-
keybind: "session_child_first",
959-
category: "Session",
960-
hidden: true,
961-
onSelect: (dialog) => {
962-
moveToFirstChild()
963-
dialog.clear()
964-
},
965-
},
966955
{
967956
title: "Go to first child session",
968957
value: "session.child.down",
@@ -2039,12 +2028,10 @@ function Task(props: ToolProps<typeof TaskTool>) {
20392028
}}
20402029
</Show>
20412030
</box>
2042-
<Show when={props.metadata.sessionId}>
2043-
<text fg={theme.text}>
2044-
{keybind.print("session_child_down")}
2045-
<span style={{ fg: theme.textMuted }}> view subagents</span>
2046-
</text>
2047-
</Show>
2031+
<text fg={theme.text}>
2032+
{keybind.print("session_child_down")}
2033+
<span style={{ fg: theme.textMuted }}> view subagents</span>
2034+
</text>
20482035
</BlockTool>
20492036
</Match>
20502037
<Match when={true}>

0 commit comments

Comments
 (0)