diff --git a/apps/builder/src/components/inputs/Select.tsx b/apps/builder/src/components/inputs/Select.tsx index 2aa522dcb..92b6825fd 100644 --- a/apps/builder/src/components/inputs/Select.tsx +++ b/apps/builder/src/components/inputs/Select.tsx @@ -69,17 +69,15 @@ export const Select = ({ const inputRef = useRef(null) const { ref: parentModalRef } = useParentModal() - const filteredItems = ( - isTouched - ? [ - ...(items ?? []).filter((item) => - getItemLabel(item) - .toLowerCase() - .includes((inputValue ?? '').toLowerCase()) - ), - ] - : items ?? [] - ).slice(0, 50) + const filteredItems = isTouched + ? [ + ...(items ?? []).filter((item) => + getItemLabel(item) + .toLowerCase() + .includes((inputValue ?? '').toLowerCase()) + ), + ] + : items ?? [] const closeDropdown = () => { onClose()