always update frame

This commit is contained in:
Lu[ke] Wilson 2023-11-24 12:21:54 +00:00
parent 72ef944b8b
commit 7d8529c636
1 changed files with 3 additions and 3 deletions

View File

@ -157,9 +157,9 @@ export class LiveImageShapeUtil extends FrameShapeUtil {
const iteration = startedIteration.current++;
const shapes = Array.from(editor.getShapeAndDescendantIds([shape.id]))
.filter((id) => id !== shape.id)
.map((id) => editor.getShape(id)) as TLShape[];
const shapes = Array.from(
editor.getShapeAndDescendantIds([shape.id])
).map((id) => editor.getShape(id)) as TLShape[];
// Check if should submit request
const shapesDigest = JSON.stringify(shapes);