Skip to content

Commit

Permalink
Prettified code
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette authored and actions-user committed Mar 18, 2021
1 parent 44f66a6 commit 50e7a66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/trade/market.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export async function getItemPrice({ appid, market_hash_name }: Item): Promise<I

export async function getAllItemsPrice(items: Item[]) {
const prices: ItemPrice[] = [];
for(let item of items) {
prices.push(await getItemPrice(item))
for (let item of items) {
prices.push(await getItemPrice(item));
}
return prices;
}
Expand Down

0 comments on commit 50e7a66

Please sign in to comment.