CM
Size: a a a
CM
NM
NM
CM
user.avatar = this.uploadedFile
fd.append('user', user);
II
CM
AB
II
fd.append('user', this.user, this.uploadedFile);
Argument of type 'User' is not assignable to parameter of type 'string | Blob'.
Type 'User' is missing the following properties from type 'Blob': size, type, arrayBuffer, slice, and 2 more.ts(2345)
CM
fd.append('user', this.user, this.uploadedFile);
Argument of type 'User' is not assignable to parameter of type 'string | Blob'.
Type 'User' is missing the following properties from type 'Blob': size, type, arrayBuffer, slice, and 2 more.ts(2345)
S
CM
II
fd.append("user", this.user);
fd.append("avatar", this.uploadedFile);
S
CM
fd.append("user", this.user);
fd.append("avatar", this.uploadedFile);
CM
A
S
S
IR