Upon logging, you can see it is referred to as a Blob. It has all of the correct properties, but at some point during this transaction, it drops type, and I kept getting errors related to type being undefined despite it being in there as a property. Once I began treating is a Blob without the properties of my File it worked. I'm wondering what this is caused by.
I believe the return is typed incorrectly.
Upon logging, you can see it is referred to as a
Blob
. It has all of the correct properties, but at some point during this transaction, it dropstype
, and I kept getting errors related totype
beingundefined
despite it being in there as a property. Once I began treating is aBlob
without the properties of myFile
it worked. I'm wondering what this is caused by.