Hi, the problem is that FileList is not an instance of Array and this will cause an issue. https://github.com/elbywan/wretch/blob/411fb09d218fe997dfb3274453953594008e54ce/src/addons/formData.ts#L15 it can simply be fixed by changing the condition to: ```js if (value instanceof Array || value instanceof FileList) { // ... ```