Skip to content

Commit

Permalink
fix minDollarAmountToDisplay
Browse files Browse the repository at this point in the history
  • Loading branch information
Doctor-Cyclone committed Apr 11, 2024
1 parent 080db4c commit 28062d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class MevBotComponent {
);

@Input() set trade(trade: CrossChainTrade | OnChainTrade) {
const minDollarAmountToDisplay = 0.01;
const minDollarAmountToDisplay = 1000;
const amount = trade?.from.price.multipliedBy(trade?.from.tokenAmount);

this.routingForm = (trade?.from.blockchain === trade?.to.blockchain
Expand Down

0 comments on commit 28062d6

Please sign in to comment.