Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
YuneVK authored Feb 29, 2020
1 parent 3962935 commit 59d824a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ const handleUpload = (ev) => {
const files = ev.target.files
if (files.length){
const reader = new FileReader();
reader.readAsDataUrl(files[0]);
reader.readAsDataURL(files[0]);
reader.onload = (ev) => {
setImage(ev.target.result);
setStep(2);
Expand Down

0 comments on commit 59d824a

Please sign in to comment.