@ -63,7 +63,10 @@ export function newTextElement(
}
export function duplicateElement(element: ReturnType<typeof newElement>) {
const copy = { ...element };
const copy = {
...element,
points: JSON.parse(JSON.stringify(element.points)),
};
delete copy.shape;
copy.id = nanoid();
copy.seed = randomSeed();