From cb84f1457726b51f9a5ba32bf6d06157ea57ec92 Mon Sep 17 00:00:00 2001 From: sehyunc <41171808+sehyunc@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:31:16 -0800 Subject: [PATCH] s --- app/stats/charts/time-to-fill-card.tsx | 8 +++----- app/stats/hooks/use-time-to-fill.ts | 11 ----------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/app/stats/charts/time-to-fill-card.tsx b/app/stats/charts/time-to-fill-card.tsx index df37e2d2..a766b772 100644 --- a/app/stats/charts/time-to-fill-card.tsx +++ b/app/stats/charts/time-to-fill-card.tsx @@ -123,6 +123,7 @@ export function TimeToFillCard() { isQuoteCurrency, isSell: false, }) + console.log("🚀 ~ TimeToFillCard ~ priceInBase:", priceInBase) // Calculate amount in USD const amountInUSD = useMemo(() => { @@ -165,7 +166,7 @@ export function TimeToFillCard() { return { value: timeInMinutes < 1 ? 1 : timeInMinutes, - prefix: timeInMinutes < 1 ? "<" : "~", + prefix: timeInMinutes < 1 ? "< " : "~", suffix: timeInMinutes < 1 || timeInMinutes === 1 ? " minute" : " minutes", } }, [timeToFillMs]) @@ -187,10 +188,7 @@ export function TimeToFillCard() { />