fix: 경매장 소수점 제거
This commit is contained in:
@@ -152,7 +152,7 @@ async function refreshDetail() {
|
||||
currentAuction.value = await SammoAPI.Auction.GetUniqueItemAuctionDetail({ auctionID });
|
||||
const bidList = currentAuction.value.bidList;
|
||||
const highestBidAmount = Math.max(bidList[0].amount, bidList[bidList.length-1].amount);
|
||||
bidAmount.value = highestBidAmount * 1.01;
|
||||
bidAmount.value = Math.ceil(highestBidAmount * 1.01);
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
if (isString(e)) {
|
||||
|
||||
Reference in New Issue
Block a user