ed-roh / mern-social-media

Complete React MERN Full Stack Social Media App
992 stars 859 forks source link

Unable to post picture to myPostWidget #42

Open Saikat-Mandal opened 1 year ago

Saikat-Mandal commented 1 year ago

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 .

Bot-1-0-1 commented 1 year ago

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

killerTiger10 commented 9 months ago

<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.