Skip to content

Commit

Permalink
Merge pull request #643 from the-hideout/feature/fix_sort_trader_unlock
Browse files Browse the repository at this point in the history
Fix to sorting of trader LL unlock stock price
  • Loading branch information
Shebuka authored Aug 22, 2023
2 parents 8053ef3 + f729aa6 commit f70af01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/small-item-table/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ function SmallItemTable(props) {
useColumns.push({
Header: t('Trader buy'),
id: 'traderPrice',
accessor: (d) => Number(d.instaProfit),
accessor: (d) => Number(d.buyFor[0].priceRUB),
Cell: TraderPriceCell,
position: traderPrice,
});
Expand Down

0 comments on commit f70af01

Please sign in to comment.