JSON.stringify jank

I discovered that the problem is JSON.stringify, not parse
C
corporatā€¢773d ago
wtf is this
No description
C
corporatā€¢773d ago
my fix for this was
JSON.stringify(dragdata, (key,value)=>{
if(typeof value=== "array")
return JSON.stringify(value);
return value;
});
JSON.stringify(dragdata, (key,value)=>{
if(typeof value=== "array")
return JSON.stringify(value);
return value;
});
and then in the implementation of _onDropItemCreate I did an additional parse of arrays šŸ¤·