Gift Filter: Fix menu item name for sort type (#5675)

This commit is contained in:
Alexander Zinchuk 2025-03-01 17:59:43 +01:00
parent 015a6472a1
commit c9174ba624

View File

@ -523,7 +523,7 @@ const RightHeader: FC<OwnProps & StateProps> = ({
{ peerId: chatId, filter: { sortType: giftsSortType === 'byDate' ? 'byValue' : 'byDate' } },
)}
>
{lang(giftsSortType === 'byDate' ? 'GiftSortByDate' : 'GiftSortByValue')}
{lang(giftsSortType === 'byDate' ? 'GiftSortByValue' : 'GiftSortByDate')}
</MenuItem>
<MenuSeparator />