Skip to content

Commit

Permalink
fix pod amount on pod order cancellations
Browse files Browse the repository at this point in the history
  • Loading branch information
uncoolzero committed Jul 10, 2024
1 parent 422b04d commit 06aa623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ui/src/hooks/beanstalk/useMarketActivityData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const useMarketActivityData = () => {
);
const podAmount =
beanAmount && pricePerPod
? beanAmount.multipliedBy(pricePerPod)
? beanAmount.dividedBy(pricePerPod).dp(6)
: undefined;

return <MarketEvent>{
Expand Down

0 comments on commit 06aa623

Please sign in to comment.