diff options
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx index 40e8fbbed..11d30ff78 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1878,8 +1878,10 @@ function Read(props: ToolProps<typeof ReadTool>) { </InlineTool> <For each={loaded()}> {(filepath) => ( - <box paddingLeft={5}> - <text fg={theme.textMuted}>⤷ Loaded {normalizePath(filepath)}</text> + <box paddingLeft={3}> + <text paddingLeft={3} fg={theme.textMuted}> + ↳ Loaded {normalizePath(filepath)} + </text> </box> )} </For> |
