Skip to content

Commit a0831ea

Browse files
committed
tui: remove bullet prefix from timestamps in session view for cleaner display
1 parent f1dc981 commit a0831ea

File tree

1 file changed

+2
-2
lines changed
  • packages/opencode/src/cli/cmd/tui/routes/session

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -969,8 +969,8 @@ function UserMessage(props: {
969969
fallback={
970970
<span style={{ fg: theme.textMuted }}>
971971
{ctx.showTimestamps()
972-
? ${Locale.todayTimeOrDateTime(props.message.time.created)}`
973-
: ${Locale.time(props.message.time.created)}`}
972+
? Locale.todayTimeOrDateTime(props.message.time.created)
973+
: Locale.time(props.message.time.created)}
974974
</span>
975975
}
976976
>

0 commit comments

Comments
 (0)