We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c74d76 commit 4d9b78bCopy full SHA for 4d9b78b
1 file changed
src/pages/EditorComponent.js
@@ -386,7 +386,7 @@ function EditorComponent() {
386
return;
387
}
388
389
- const outputText = outputToText(output);
+ const outputText = Array.isArray(output) ? output.join("\n") : output.toString();
390
try {
391
await navigator.clipboard.writeText(outputText);
392
enqueueSnackbar("Output copied to clipboard!", { variant: "success" });
0 commit comments