Preserve linebreaks in model output

This commit is contained in:
Kyle Corbitt
2023-08-09 21:58:41 -07:00
parent e6d229d5f9
commit b2af83341d

View File

@@ -191,7 +191,7 @@ export default function OutputCell({
return ( return (
<CellWrapper> <CellWrapper>
<Text>{contentToDisplay}</Text> <Text whiteSpace="pre-wrap">{contentToDisplay}</Text>
</CellWrapper> </CellWrapper>
); );
} }