Skip to content

Commit

Permalink
Dont use scaled image (fixes GH-37)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed May 27, 2023
1 parent 2ad292c commit 1670513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/imageEditorModal.tsx
Expand Up @@ -45,7 +45,7 @@ export default function ImageEditorModal({
onClose={() => setOpen(false)}
onSave={() => {
if (ref.current) {
onSave(ref.current.getImageScaledToCanvas());
onSave(ref.current.getImage());
setOpen(false);
}
}}
Expand Down

0 comments on commit 1670513

Please sign in to comment.