mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-06 00:52:45 -07:00
fix(cli): remove row flex direction from BtwDisplay to prevent horizontal layout
This commit is contained in:
committed by
Mahima Shanware
parent
da5af386e0
commit
d912a58f81
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user