rn-perfect-sketch-canvas
rn-perfect-sketch-canvas copied to clipboard
When calling addPoints() I get: ERROR Warning: Encountered two children with the same key, `timestamp`. Keys should be unique...
I believe the id property that is generated via Date.now() in the addPoints implementation is causing this issue. If I change Ln99 to something like: "id: Date.now() + Math.random()," the error goes away.