diff --git a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/FilterEditor/FilterDrawer.svelte b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/FilterEditor/FilterDrawer.svelte
index 836f19a000..669ebe458b 100644
--- a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/FilterEditor/FilterDrawer.svelte
+++ b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/FilterEditor/FilterDrawer.svelte
@@ -133,20 +133,12 @@
/>
{:else if ["string", "longform", "number"].includes(filter.type)}
- {:else if filter.type === "options"}
+ {:else if filter.type === "options" || "array"}
- {:else if filter.type === "array"}
- x}
- getOptionValue={x => x}
- />
{:else if filter.type === "boolean"}
{
if (Array.isArray(input[key])) {
for (let val in input[key]) {
// eslint-disable-next-line no-undef
- index(`${idxKey}.${input[key][val]}`, input[key][val], {
+ index(`${idxKey}`, input[key][val], {
store: true,
})
}