We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b09b9 commit 22016afCopy full SHA for 22016af
extensions/cli/src/ui/components/MemoizedMessage.tsx
@@ -56,13 +56,6 @@ export const MemoizedMessage = memo<MemoizedMessageProps>(
56
57
// Handle system messages
58
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
-
66
return (
67
<Box key={index} marginBottom={1}>
68
<Text color="dim" italic>
0 commit comments