diff --git a/packages/bbui/src/Modal/ModalContent.svelte b/packages/bbui/src/Modal/ModalContent.svelte
index 4c70f2390a..d946268da6 100644
--- a/packages/bbui/src/Modal/ModalContent.svelte
+++ b/packages/bbui/src/Modal/ModalContent.svelte
@@ -88,7 +88,7 @@
- {#if showCancelButton || showConfirmButton}
+ {#if showCancelButton || showConfirmButton || $$slots.footer}
diff --git a/packages/builder/src/stores/portal/plugins.js b/packages/builder/src/stores/portal/plugins.js
index 821934307d..9d558561b6 100644
--- a/packages/builder/src/stores/portal/plugins.js
+++ b/packages/builder/src/stores/portal/plugins.js
@@ -17,11 +17,10 @@ export function createPluginsStore() {
})
}
- async function createPlugin(type, source, name, url, auth = null) {
+ async function createPlugin(type, source, url, auth = null) {
let pluginData = {
type,
source,
- name,
url,
}