Skip to content

Commit

Permalink
console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sladuca committed Feb 16, 2025
1 parent 70d1ac2 commit 55ae3b9
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/lib/buy/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
});
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 55ae3b9

Please sign in to comment.