diff --git a/src/lib/buy/index.tsx b/src/lib/buy/index.tsx index b75358aa..5aa12a60 100644 --- a/src/lib/buy/index.tsx +++ b/src/lib/buy/index.tsx @@ -195,6 +195,8 @@ function QuoteAndBuy(props: { options: SfBuyOptions }) { } pricePerGpuHour = getPricePerGpuHourFromQuote(quote); + // Add 1 cent to price to make order more likely to fill + pricePerGpuHour += 1; startAt = parseStartDateOrNow(quote.start_at);