react-bare-forms icon indicating copy to clipboard operation
react-bare-forms copied to clipboard

TS2345: Argument of type 'IFile' is not assignable to parameter of type 'string | Blob'.

Open joegasewicz opened this issue 4 years ago • 0 comments

Error:

TS2345: Argument of type 'IFile' is not assignable to parameter of type 'string | Blob'.

Recreate error:

const teacher_img = getFileFromRef(teacherImgRef);
formData.append("teacher_img", teacher_img); // Error thrown here -> TS2345: Argument of type 'IFile' is not assignable to parameter of type 'string | Blob'.

Quick fix:

formData.append("teacher_img", teacher_img as any);

joegasewicz avatar Jun 07 '21 19:06 joegasewicz