diff --git a/src/frontend/src/shared/components/textOutputView/index.tsx b/src/frontend/src/shared/components/textOutputView/index.tsx
index 60e83692b..0071a654b 100644
--- a/src/frontend/src/shared/components/textOutputView/index.tsx
+++ b/src/frontend/src/shared/components/textOutputView/index.tsx
@@ -1,14 +1,17 @@
import { Textarea } from "../../../components/ui/textarea";
const TextOutputView = ({ left, value }) => {
+ if (typeof value === "object" && Object.keys(value).includes("text")) {
+ value = value.text;
+ }
return (
-
+
);
};