Closed Blissful89 closed 1 month ago
Response could fail on data.attributes being undefined; Object.assign(undefined, <value>).
data.attributes
Object.assign(undefined, <value>)
Changed to { ...data.attributes, ...<value> } to prevent error from occuring
{ ...data.attributes, ...<value> }
Response could fail on
data.attributes
being undefined;Object.assign(undefined, <value>)
.Changed to
{ ...data.attributes, ...<value> }
to prevent error from occuring