From c9174ba624a993353528f913bc1aab4b4b79914f Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Sat, 1 Mar 2025 17:59:43 +0100 Subject: [PATCH] Gift Filter: Fix menu item name for sort type (#5675) --- src/components/right/RightHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/right/RightHeader.tsx b/src/components/right/RightHeader.tsx index 249c5a0a8..b16653d16 100644 --- a/src/components/right/RightHeader.tsx +++ b/src/components/right/RightHeader.tsx @@ -523,7 +523,7 @@ const RightHeader: FC = ({ { peerId: chatId, filter: { sortType: giftsSortType === 'byDate' ? 'byValue' : 'byDate' } }, )} > - {lang(giftsSortType === 'byDate' ? 'GiftSortByDate' : 'GiftSortByValue')} + {lang(giftsSortType === 'byDate' ? 'GiftSortByValue' : 'GiftSortByDate')}