fix: Emoji picker's object and symbols category icon swapped (#32612)

pull/31987/head^2
Douglas Fabris 2 years ago committed by GitHub
parent 142877891b
commit e6bfb4eafb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .changeset/red-cheetahs-heal.md
  2. 4
      apps/meteor/client/views/composer/EmojiPicker/EmojiPickerCategoryItem.tsx

@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---
Fixes a cosmetic issue where emoji picker object and symbols category icon are swapped

@ -30,10 +30,10 @@ const mapCategoryIcon = (category: string) => {
return 'airplane';
case 'objects':
return 'percentage';
return 'lamp-bulb';
case 'symbols':
return 'lamp-bulb';
return 'percentage';
case 'flags':
return 'flag';

Loading…
Cancel
Save