You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When passing in a value that is of type File[], calling .append() on it converts it into [object Blob] instead of the desired effect of appending the contents of the array.
This can be fixed by checking Array.isArray on the field.
The text was updated successfully, but these errors were encountered:
The issue can be specifically traced down to this line:
eden/src/treaty2/index.ts
Line 292 in 8a0f7b6
When passing in a value that is of type
File[]
, calling.append()
on it converts it into[object Blob]
instead of the desired effect of appending the contents of the array.This can be fixed by checking
Array.isArray
on the field.The text was updated successfully, but these errors were encountered: