From ac833a44d2b84e77ce6de3ce44d0a976e5701f88 Mon Sep 17 00:00:00 2001 From: David Corbitt Date: Wed, 28 Jun 2023 16:05:02 -0700 Subject: [PATCH] Mess around with error message --- src/components/OutputsTable/OutputCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/OutputsTable/OutputCell.tsx b/src/components/OutputsTable/OutputCell.tsx index a0cf29d..cc403b1 100644 --- a/src/components/OutputsTable/OutputCell.tsx +++ b/src/components/OutputsTable/OutputCell.tsx @@ -64,9 +64,9 @@ export default function OutputCell({ try { parsedArgs = JSON.parse(rawArgs); } catch (e: any) { - parsedArgs = `Failed to parse arguments as JSON: ${ + parsedArgs = `Failed to parse arguments as JSON: '${rawArgs}' ERROR: ${ e.message as string - } ${rawArgs}`; + }`; } return (