Log node now has a code block

This commit is contained in:
James Ritchie
2022-12-20 11:50:52 +00:00
parent 4abfaffc2a
commit 176b8701bf
@@ -249,11 +249,7 @@ function Delay({ step }: { step: DelayStep }) {
}
function Log({ log }: { log: string }) {
return (
<Header3 size="large" className="mb-4">
{log}
</Header3>
);
return <CodeBlock code={log} />;
}
function StepError({ step }: { step: Step }) {