From f553c26c52458f6b2432d8708bf5cb1de8e05fdf Mon Sep 17 00:00:00 2001 From: David Corbitt Date: Fri, 30 Jun 2023 17:43:04 -0700 Subject: [PATCH] Maintain spaces and newlines in model output --- src/components/OutputsTable/OutputCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/OutputsTable/OutputCell.tsx b/src/components/OutputsTable/OutputCell.tsx index cc403b1..44b49cf 100644 --- a/src/components/OutputsTable/OutputCell.tsx +++ b/src/components/OutputsTable/OutputCell.tsx @@ -92,5 +92,5 @@ export default function OutputCell({ ); } - return {message?.content ?? JSON.stringify(output.data.output)}; + return {message?.content ?? JSON.stringify(output.data.output)}; }