diff --git a/src/components/middle/message/Message.tsx b/src/components/middle/message/Message.tsx index 48f309fe6..6b5c46a6e 100644 --- a/src/components/middle/message/Message.tsx +++ b/src/components/middle/message/Message.tsx @@ -503,6 +503,7 @@ const Message: FC = ({ && !forwardInfo.isLinkedChannelPost && !isCustomShape ) || Boolean(message.content.storyData && !message.content.storyData.isMention); + const canShowSenderBoosts = Boolean(senderBoosts) && !asForwarded && isFirstInGroup; const isStoryMention = message.content.storyData?.isMention; const isAlbum = Boolean(album) && album!.messages.length > 1 && !album?.messages.some((msg) => Object.keys(msg.content).length === 0); @@ -1359,7 +1360,7 @@ const Message: FC = ({ )} ) : undefined} - {Boolean(senderBoosts) && ( + {canShowSenderBoosts && ( 1 ? 'boosts' : 'boost'} /> {senderBoosts > 1 ? senderBoosts : undefined}