fix(cli): remove row flex direction from BtwDisplay to prevent horizontal layout

This commit is contained in:
Mahima Shanware
2026-03-27 17:48:15 +00:00
committed by Mahima Shanware
parent da5af386e0
commit d912a58f81
+6 -10
View File
@@ -63,16 +63,12 @@ export const BtwDisplay: React.FC<BtwDisplayProps> = ({
{error ? (
<Text color={theme.status.error}>{error}</Text>
) : (
<Box flexDirection="row">
<Box flexGrow={1}>
<MarkdownDisplay
text={response}
isPending={isStreaming}
terminalWidth={terminalWidth - 6}
renderMarkdown={renderMarkdown}
/>
</Box>
</Box>
<MarkdownDisplay
text={response}
isPending={isStreaming}
terminalWidth={terminalWidth - 6}
renderMarkdown={renderMarkdown}
/>
)}
</Box>