diff --git a/src/components/modals/gift/info/GiftInfoModal.tsx b/src/components/modals/gift/info/GiftInfoModal.tsx index 02eeadd63..93ae28df3 100644 --- a/src/components/modals/gift/info/GiftInfoModal.tsx +++ b/src/components/modals/gift/info/GiftInfoModal.tsx @@ -164,7 +164,7 @@ const GiftInfoModal = ({ const resellPrice = getResalePrice(); const confirmPrice = getResalePrice(shouldPayInTon); - const canBuyGift = !canManage && Boolean(resellPrice); + const canBuyGift = gift?.type === 'starGiftUnique' && gift.ownerId !== currentUserId && Boolean(resellPrice); const giftOwnerTitle = (() => { if (!isGiftUnique) return undefined; @@ -423,14 +423,14 @@ const GiftInfoModal = ({