From 1a6e358b9ef6c4b9af1079eddfb4a52bfd5b8453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cchrisshank=E2=80=9D?= Date: Fri, 20 Dec 2024 12:30:51 -0800 Subject: [PATCH] fix infinite loop --- labs/folk-shape.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labs/folk-shape.ts b/labs/folk-shape.ts index c81981e..be346e0 100644 --- a/labs/folk-shape.ts +++ b/labs/folk-shape.ts @@ -441,9 +441,9 @@ export class FolkShape extends FolkElement { } protected override update(changedProperties: PropertyValues): void { - super.update(changedProperties); - this.#dispatchTransformEvent(); + + super.update(changedProperties); } #dispatchTransformEvent() {