Skip to content

Commit 22016af

Browse files
authored
fix(cli): unskip first slash command output (#8482)
1 parent 09b09b9 commit 22016af

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

extensions/cli/src/ui/components/MemoizedMessage.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ export const MemoizedMessage = memo<MemoizedMessageProps>(
5656

5757
// Handle system messages
5858
if (isSystem) {
59-
// TODO: Properly separate LLM system messages from UI informational messages
60-
// using discriminated union types. For now, skip displaying the first system
61-
// message which is typically the LLM's system prompt.
62-
if (index === 0) {
63-
return null;
64-
}
65-
6659
return (
6760
<Box key={index} marginBottom={1}>
6861
<Text color="dim" italic>

0 commit comments

Comments
 (0)