diff --git a/src/components/common/StickerButton.tsx b/src/components/common/StickerButton.tsx index c5408d928..b92b78dca 100644 --- a/src/components/common/StickerButton.tsx +++ b/src/components/common/StickerButton.tsx @@ -157,7 +157,11 @@ const StickerButton = { if (isContextMenuOpen) return; if (isLocked) { - openPremiumModal({ initialSection: 'premium_stickers' }); + if (isEffectEmoji) { + openPremiumModal({ initialSection: 'effects' }); + } else { + openPremiumModal({ initialSection: 'premium_stickers' }); + } return; } onClick?.(clickArg);