diff --git a/packages/builder/src/components/common/MultiSelect.svelte b/packages/builder/src/components/common/MultiSelect.svelte
deleted file mode 100644
index e4d98906f3..0000000000
--- a/packages/builder/src/components/common/MultiSelect.svelte
+++ /dev/null
@@ -1,354 +0,0 @@
-
-
-
- {#if label}
-
- {/if}
-
-
-
- {#each Object.values(selected) as option}
-
-
{option.name}
-
remove(option.value)}>
-
-
-
- {/each}
- {#if !value || !value.length}
- {#if placeholder && placeholder.length}
-
{placeholder}
- {:else}
-
- {/if}
- {/if}
-
-
-
-
-
- {#if optionsVisible}
-
showOptions(false)}>
-
- {#each options as option}
- -
- {option.name}
-
- {/each}
- {#if !options.length}
- - No results
- {/if}
-
-
- {/if}
-
-
-
-