Karim

Results 3 comments of Karim

### Proposal By replacing the incorrect emojis inside `App/assets/emojis.js` with the correct emojis (see the attached `emojis.txt`), all Emojis will appear in the correct shapes in Safari, Firefox. ![safari](https://user-images.githubusercontent.com/108357004/184733339-3150f00f-26a3-4878-a337-d092d34eb7aa.png) ![firefox](https://user-images.githubusercontent.com/108357004/184733351-32dd065d-701f-40b9-83b7-2c25296854a5.png)...

@roryabraham we already have this feature because we are inserting the emoji name and its keywords into the [Trie](https://github.com/Expensify/App/blob/72fa14d878281b3db1a1fa28330b9fba835a7436/src/libs/EmojiTrie.js#L8-L32) i.e when inserting this emoji ```javascript { code: '😀', keywords: [...

in `src/libs/EmojiUtils.js` : ```diff function replaceEmojis(text) { let newText = text; const emojiData = text.match(CONST.REGEX.EMOJI_NAME); if (!emojiData || emojiData.length === 0) { return text; } for (let i = 0;...