diff --git a/src/components/molecules/RunContent.tsx b/src/components/molecules/RunContent.tsx index 2ac4d369..08b832c4 100644 --- a/src/components/molecules/RunContent.tsx +++ b/src/components/molecules/RunContent.tsx @@ -184,19 +184,16 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe Binary output {Object.keys(row.binaryOutput).map((key) => { try { - const binaryBuffer = JSON.parse(row.binaryOutput[key].data); - const b64 = Buffer.from(binaryBuffer.data).toString('base64'); + const imageUrl = row.binaryOutput[key]; return ( {key}: - Download + Download - {key} + {key} ) } catch (e) {