remove borders from autocomplete dialog

This commit is contained in:
Alejandro Gomez
2023-01-20 12:19:38 +01:00
parent b7b19ea1dd
commit c6e0c2b7c9
2 changed files with 14 additions and 2 deletions

View File

@ -63,7 +63,7 @@ const Textarea = ({ users, onChange, ...rest }: any) => {
const emojiDataProvider = (token: string) => {
return emoji(token)
.slice(0, 10)
.slice(0, 5)
.map(({ name, char }) => ({ name, char }));
}