We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ReactionPickerLimited
1 parent 9c81341 commit e494152Copy full SHA for e494152
src/components/middle/message/reactions/ReactionPickerLimited.tsx
@@ -98,7 +98,7 @@ const ReactionPickerLimited: FC<OwnProps & StateProps> = ({
98
return sortReactions(reactionsToSort, topReactions);
99
}
100
101
- const reactionsToSort: ApiReactionWithPaid[] = enabledReactions.allowed;
+ const reactionsToSort: ApiReactionWithPaid[] = enabledReactions.allowed.slice();
102
if (isWithPaidReaction) {
103
reactionsToSort.unshift({ type: 'paid' });
104
0 commit comments