Skip to content

Commit

Permalink
Clean up logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham committed Sep 3, 2024
1 parent dac7a6f commit 298dcfe
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/web/components/assets/price.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ export const PriceChange: FunctionComponent<
value?: PricePretty;
} & CustomClasses
> = ({ priceChange, overrideTextClasses = "body1", className, value }) => {
console.log("-------------------");
console.log("PriceChange toDec toString: ", priceChange.toDec().toString());
console.log("Threshold toDec toString: ", new Dec(-THRESHOLD).toString());
const isBullish = priceChange.toDec().gte(new Dec(THRESHOLD));
const isBearish = priceChange.toDec().lte(new Dec(-THRESHOLD));
const isFlat = !isBullish && !isBearish;
Expand Down

0 comments on commit 298dcfe

Please sign in to comment.