We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 081376b commit 47bbd2eCopy full SHA for 47bbd2e
src/components/TextAreaComposer/SuggestionList.tsx
@@ -201,9 +201,14 @@ export const SuggestionList = <
201
return (
202
<InfiniteScrollPaginator
203
loadNextOnScrollToBottom={suggestions.searchSource.search}
204
- threshold={40}
+ threshold={100}
205
>
206
- <ul className={clsx('str-chat__suggestion-list', className)}>
+ <ul
207
+ className={clsx(
208
+ 'str-chat__suggestion-list str-chat__suggestion-list--react',
209
+ className,
210
+ )}
211
+ >
212
{items.map((item, i) => (
213
<AutocompleteSuggestionItem
214
// @ts-expect-error type mismatch
0 commit comments