This commit is contained in:
Ilya Laktyushin
2025-11-14 16:09:30 +04:00
parent 807fa893c5
commit 38eaa9085a

View File

@@ -2209,7 +2209,7 @@ private final class GiftAuctionBidScreenComponent: Component {
var myBidDate = currentTime
var isBiddingUp = true
if let currentAmount = giftAuctionState.myState.bidAmount, let currentDate = giftAuctionState.myState.bidDate, currentAmount <= myBidAmount {
if let currentAmount = giftAuctionState.myState.bidAmount, let currentDate = giftAuctionState.myState.bidDate, currentAmount >= myBidAmount {
myBidAmount = currentAmount
myBidDate = currentDate
isBiddingUp = false