remove log

This commit is contained in:
Niels Lyngsø
2024-03-04 01:06:22 +01:00
parent 7c406d4866
commit b3ca10e850

View File

@@ -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) ?? [];