ealush/emoji-picker-react

Is there any way to hide suggestion mode

hieunm22 opened this issue · 2 comments

I found no way to hide suggestion mode in emoji picker
is it inside a setting or it hasn't been available?

image

Hello @hieunm22,
sure, you need to pass in categories prop an array with the list you want. In your case skip Categories.SUGGESTED category.

const customCategories = [
  {
    category: Categories.SMILEYS_PEOPLE,
    name: 'Smileys & People',
  },
{
    category: Categories.ANIMALS_NATURE,
    name: 'Animals & Nature',
  },
  ...
];

<Picker
  categories={customCategories}
  ...
/>

thanks @jhonber
your idea is another solution that I can refer
I myself found my own solution which remove localStorage key "epr_suggested" everytime the emoji board is loaded then it works fine
Another solution for someone who needs to refer