diff --git a/frontend/app/view/codeeditor/codeeditor.tsx b/frontend/app/view/codeeditor/codeeditor.tsx index 13c810d6a..c77c4d9b7 100644 --- a/frontend/app/view/codeeditor/codeeditor.tsx +++ b/frontend/app/view/codeeditor/codeeditor.tsx @@ -158,6 +158,7 @@ export function CodeEditor({ blockId, text, language, fileName, readonly, onChan opts.stickyScroll.enabled = stickyScrollEnabled; opts.wordWrap = wordWrap ? "on" : "off"; opts.fontSize = fontSize; + opts.copyWithSyntaxHighlighting = false; return opts; }, [minimapEnabled, stickyScrollEnabled, wordWrap, fontSize, readonly]);