diff --git a/source/dom/customelement.mjs b/source/dom/customelement.mjs
index b8fa1cebc7e48173011fe878442cbebe0e6a41bf..66615d0c89d70c511daeda31939a0c84685c90a1 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](); 
 		}
 	}