2 parents 84dde05 + 9ea6cea commit 8ce5fbbCopy full SHA for 8ce5fbb
1 file changed
packages/tui/src/features/timeline/ChatWidget.tsx
@@ -102,9 +102,11 @@ export const ChatWidget = memo(function ChatWidget({
102
{item.data.version}
103
</Text>
104
<Text color="gray">cwd: {item.data.cwd}</Text>
105
- <Text color="gray">
106
- mcp: {item.data.mcpNames.join(', ') || 'none'}
107
- </Text>
+ {item.data.mcpNames.length > 0 ? (
+ <Text color="gray">
+ mcp: {item.data.mcpNames.join(', ')}
108
+ </Text>
109
+ ) : null}
110
</Box>
111
)
112
}
0 commit comments