diff --git a/src/components/middle/composer/CustomEmojiPicker.tsx b/src/components/middle/composer/CustomEmojiPicker.tsx index b8dbafb7b..b8c55dd0b 100644 --- a/src/components/middle/composer/CustomEmojiPicker.tsx +++ b/src/components/middle/composer/CustomEmojiPicker.tsx @@ -296,7 +296,7 @@ const CustomEmojiPicker: FC = ({ shouldRender={activeSetIndex >= i - 1 && activeSetIndex <= i + 1} isSavedMessages={isSavedMessages} shouldHideRecentHeader={withDefaultTopicIcons} - withDefaultTopicIcon={withDefaultTopicIcons} + withDefaultTopicIcon={stickerSet.id === RECENT_SYMBOL_SET_ID} isCustomEmojiPicker isCurrentUserPremium={isCurrentUserPremium} onStickerSelect={handleEmojiSelect} diff --git a/src/components/middle/composer/StickerSet.tsx b/src/components/middle/composer/StickerSet.tsx index 6eebb4367..46b82cfdf 100644 --- a/src/components/middle/composer/StickerSet.tsx +++ b/src/components/middle/composer/StickerSet.tsx @@ -48,7 +48,7 @@ type OwnProps = { const STICKER_MARGIN = IS_SINGLE_COLUMN_LAYOUT ? 8 : 16; const EMOJI_MARGIN = IS_SINGLE_COLUMN_LAYOUT ? 8 : 10; -const CONTAINER_PADDING = 8; +const CONTAINER_PADDING = IS_SINGLE_COLUMN_LAYOUT ? 8 : 0; const ITEMS_PER_ROW_FALLBACK = 8;