KDTS

Results 8 comments of KDTS

Thanks for the quick replay. Since I'm not very familiar with codesandbox.io, I couldn't run the npm scripts directly. For a clean reproduction: - Create a new blank directory and...

Correct... And since renaming files of external libraries is not an option, is it possible for d3fc to provide a hibrid/conditional export (https://2ality.com/2019/10/hybrid-npm-packages.html)?

I'm getting the same error, does someone know how to solve this?

I don't know what you mean by "reporting interface". I'm running the Script straight from the command line. Somehow it works perfectly now... I think the problem was running the...

I was having the same issue uploading files from React-Native to a Bun-powered backen. The filename was missing and I have to process the request myself. see https://github.com/oven-sh/bun/issues/21788#issuecomment-3636756458

I was having the same issue uploading files from React-Native to a Bun-powered backen. The filename was missing and I have to process the request myself. see https://github.com/oven-sh/bun/issues/21788#issuecomment-3636756458

I just spent the whole day troubleshooting a very similar issue. I am sending files from React Native ```js const formData = new FormData(); formData.append("images", { uri: image.uri, name: image.name,...

FWIW in my case, react native is not sending the filename. ```txt --14G1NuRitbxjivpyoAhEHG5BiPDolXQpzSqTJoGFgcHVUTNTs9VtfrsHbfpPy2qxDArL5x content-disposition: form-data; name="add_images" content-type: image/jpeg ����JFIFHH��LExifMM�i&�ڠ���8Photoshop 3.08BIM8BIM%��ُ�� ���B~���"�� ... ``` I think Bun's request.formData() is not treating...