From 45b281fac5ddf037b947e5f743207c00d6769848 Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Tue, 4 Oct 2022 01:34:17 -0700 Subject: [PATCH] Kill a console log --- web/components/portfolio/portfolio-value-section.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/components/portfolio/portfolio-value-section.tsx b/web/components/portfolio/portfolio-value-section.tsx index cc9fb197..833060b4 100644 --- a/web/components/portfolio/portfolio-value-section.tsx +++ b/web/components/portfolio/portfolio-value-section.tsx @@ -18,7 +18,6 @@ export const PortfolioValueSection = memo( number | string | null >(null) const handleGraphDisplayChange = (p: { y: number } | undefined) => { - console.log(p) setGraphDisplayNumber(p != null ? formatMoney(p.y) : null) }