From 64a693bce4aaf69c9a51e2bb8cca3a70a9edc304 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Fri, 1 Nov 2024 10:40:24 +0100
Subject: [PATCH] chore: tidy

---
 source/dom/customelement.mjs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/dom/customelement.mjs b/source/dom/customelement.mjs
index b8fa1cebc..66615d0c8 100644
--- a/source/dom/customelement.mjs
+++ b/source/dom/customelement.mjs
@@ -641,7 +641,7 @@ class CustomElement extends HTMLElement {
 	 */
 	getInternalUpdateCloneData() {
 		return clone(this[updateCloneDataSymbol]);
-	}
+	} 
 
 	/**
 	 * This method is called every time the element is inserted into the DOM. It checks if the custom element
@@ -655,7 +655,7 @@ class CustomElement extends HTMLElement {
 		// Check if the object has already been initialized
 		if (!hasObjectLink(this, customElementUpdaterLinkSymbol)) {
 			// If not, call the assembleMethod to initialize the object
-			this[assembleMethodSymbol]();
+			this[assembleMethodSymbol](); 
 		}
 	}
 
-- 
GitLab