ed-roh/mern-social-media

Unable to post picture to myPostWidget

Saikat-Mandal opened this issue · 2 comments

When I try to upload the images only the .png format is getting uploaded but not the other formats . I am getting the error ERR_UPLOAD_FILE_CHANGED .

I got the same error before. If you find any solution please reply

<Dropzone
acceptedFiles=".jpg,.jpeg,.png"
multiple={false}
onDrop={(acceptedFiles) => setImage(acceptedFiles[0])}
>

      Like here, you have to mention the formats in the acceptedFiles argument to allow those formats of image.