diff --git a/src/scene/getExportCanvasPreview.ts b/src/scene/getExportCanvasPreview.ts index 75b66f03..a25c50c6 100644 --- a/src/scene/getExportCanvasPreview.ts +++ b/src/scene/getExportCanvasPreview.ts @@ -21,8 +21,6 @@ export function getExportCanvasPreview( height ) { const tempCanvas = document.createElement("canvas"); - tempCanvas.style.width = width + "px"; - tempCanvas.style.height = height + "px"; tempCanvas.width = width * scale; tempCanvas.height = height * scale; return tempCanvas;