diff --git a/src/components/Select/common/InternalSelect.tsx b/src/components/Select/common/InternalSelect.tsx index 9951c34c..195964f0 100644 --- a/src/components/Select/common/InternalSelect.tsx +++ b/src/components/Select/common/InternalSelect.tsx @@ -285,6 +285,9 @@ export const InternalSelect = ({ ); const optionContextValue = useMemo(() => { + if (selectedValues[0]?.startsWith("\n")) { + selectedValues.length = 0; + } return { search, updateHighlighted: setHighlighted,