From b3ca10e850e8ca3a3fbdc944ad5201b2e3adfde9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Mon, 4 Mar 2024 01:06:22 +0100 Subject: [PATCH] remove log --- .../functions/create-extension-element-with-api.function.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/libs/extension-api/functions/create-extension-element-with-api.function.ts b/src/Umbraco.Web.UI.Client/src/libs/extension-api/functions/create-extension-element-with-api.function.ts index cab323b67a..a8f1475b5e 100644 --- a/src/Umbraco.Web.UI.Client/src/libs/extension-api/functions/create-extension-element-with-api.function.ts +++ b/src/Umbraco.Web.UI.Client/src/libs/extension-api/functions/create-extension-element-with-api.function.ts @@ -53,7 +53,6 @@ export async function createExtensionElementWithApi< element = document.createElement(fallbackElement) as ElementType; } - console.log('element', element, 'apiConstructor', apiConstructor); if (element && apiConstructor) { // If constructorArgs is a function, call it with the manifest to get the arguments: const additionalArgs = (typeof constructorArgs === 'function' ? constructorArgs(manifest) : constructorArgs) ?? [];