Skip to content

Commit

Permalink
Merge pull request #7255 from mananjadhav/fix/emojis-freq-used-error
Browse files Browse the repository at this point in the history
[No QA] fix: Fixed error with frequently used emojis not showing up

(cherry picked from commit 73cc4ab)
  • Loading branch information
stitesExpensify authored and OSBotify committed Jan 17, 2022
1 parent c1228a7 commit d4735c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libs/EmojiUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,7 @@ function mergeEmojisWithFrequentlyUsedEmojis(emojis, frequentlyUsedEmojis = [])
}];

allEmojis = allEmojis.concat(frequentlyUsedEmojis, emojis);
allEmojis = addSpacesToEmojiCategories(emojis);
return allEmojis;
return addSpacesToEmojiCategories(allEmojis);
}

/**
Expand Down

0 comments on commit d4735c0

Please sign in to comment.