chat: render all code output, not just first line

This commit is contained in:
Matilde Park 2021-02-16 15:35:47 -05:00
parent 31e97a368a
commit 240e9b5c5c

View File

@ -23,7 +23,7 @@ export default class CodeContent extends Component {
style={{ whiteSpace: 'pre' }}
backgroundColor='washedGray'
>
{content.code.output[0].join('\n')}
{content.code.output.join('\n')}
</Text>
) : null;