From 55ae3b968fcf6c1f3d5451e92f25311e7cdb9d20 Mon Sep 17 00:00:00 2001 From: Sladuca Date: Sun, 16 Feb 2025 01:53:41 -0800 Subject: [PATCH] console logs --- src/lib/buy/index.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/lib/buy/index.tsx b/src/lib/buy/index.tsx index 51380a0..754fa18 100644 --- a/src/lib/buy/index.tsx +++ b/src/lib/buy/index.tsx @@ -220,14 +220,6 @@ function QuoteAndBuy(props: { options: SfBuyOptions }) { colocate, yes, } = props.options; - - console.log("setting order props", { - type, - price: pricePerGpuHour, - size: accelerators / GPUS_PER_NODE, - startAt, - endsAt, - }); setOrderProps({ type, @@ -555,8 +547,6 @@ export async function placeBuyOrder(options: { price: options.totalPriceInCents, colocate_with: options.colocateWith, } as const; - console.log("place buy body:", body); - const { data, error, response } = await api.POST("/v0/orders", { body, }); @@ -648,7 +638,6 @@ export async function getQuote(options: QuoteOptions) { max_duration: options.maxDurationSeconds, }, } as const; - console.log("get quote params:", params); const { data, error, response } = await api.GET("/v0/quote", { params,