chore: unplug meilisearch, add leading option to throttle

This commit is contained in:
Daniel Avila 2023-03-20 00:48:16 -04:00
parent 4cd0ff2682
commit b0936fa322
4 changed files with 14 additions and 14 deletions

View file

@ -39,7 +39,7 @@ export default function Messages({ messages, messageTree }) {
console.log('scrollToBottom');
messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' });
setShowScrollButton(false);
}, 750), [messagesEndRef]);
}, 750, { leading: true }), [messagesEndRef]);
const handleScroll = () => {
const { scrollTop, scrollHeight, clientHeight } = scrollableRef.current;

View file

@ -9,7 +9,7 @@ import Logout from './Logout';
export default function NavLinks({ fetch, onSearchSuccess, clearSearch }) {
return (
<>
<SearchBar fetch={fetch} onSuccess={onSearchSuccess} clearSearch={clearSearch}/>
{/* <SearchBar fetch={fetch} onSuccess={onSearchSuccess} clearSearch={clearSearch}/> */}
<ClearConvos />
<DarkMode />
<Logout />