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
  • Loading branch information
stitesExpensify authored Jan 17, 2022
2 parents 8dc6715 + e82f8dd commit 73cc4ab
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 73cc4ab

Please sign in to comment.