diff --git a/app/soapbox/components/status-action-bar.tsx b/app/soapbox/components/status-action-bar.tsx index 297f74d19..bc8f7026c 100644 --- a/app/soapbox/components/status-action-bar.tsx +++ b/app/soapbox/components/status-action-bar.tsx @@ -529,10 +529,10 @@ const StatusActionBar: React.FC = ({ const reactMessages = { '👍': messages.reactionLike, '❤️': messages.reactionHeart, - '😹': messages.reactionLaughing, - '😺': messages.reactionOpenMouth, - '😿': messages.reactionCry, - '🙀': messages.reactionWeary, + '😆': messages.reactionLaughing, + '😮': messages.reactionOpenMouth, + '😢': messages.reactionCry, + '😩': messages.reactionWeary, '': messages.favourite, }; diff --git a/app/soapbox/normalizers/soapbox/soapbox-config.ts b/app/soapbox/normalizers/soapbox/soapbox-config.ts index 7c3c2a813..d003f75e0 100644 --- a/app/soapbox/normalizers/soapbox/soapbox-config.ts +++ b/app/soapbox/normalizers/soapbox/soapbox-config.ts @@ -93,17 +93,10 @@ export const SoapboxConfigRecord = ImmutableRecord({ allowedEmoji: ImmutableList([ '👍', '❤️', - '😺', - '😸', - '😹', - '😼', - '😽', - '🙀', - '😿', - '😾', - '🏳️‍🌈', - '🏳️‍⚧️', - '🏴‍☠️', + '😆', + '😮', + '😢', + '😩', ]), verifiedIcon: '', verifiedCanEditName: false, diff --git a/app/soapbox/utils/emoji-reacts.ts b/app/soapbox/utils/emoji-reacts.ts index b856f66e2..2fa83906b 100644 --- a/app/soapbox/utils/emoji-reacts.ts +++ b/app/soapbox/utils/emoji-reacts.ts @@ -14,17 +14,6 @@ export const ALLOWED_EMOJI = ImmutableList([ '😮', '😢', '😩', - '😺', - '😸', - '😹', - '😼', - '😽', - '🙀', - '😿', - '😾', - '🏳️‍🌈', - '🏳️‍⚧️', - '🏴‍☠️', ]); type Account = ImmutableMap;