diff --git a/web/components/portfolio/portfolio-value-section.tsx b/web/components/portfolio/portfolio-value-section.tsx index 688dbf10..6bddc71e 100644 --- a/web/components/portfolio/portfolio-value-section.tsx +++ b/web/components/portfolio/portfolio-value-section.tsx @@ -147,34 +147,3 @@ export function PortfolioPeriodSelection(props: { ) } - -export function GraphToggle(props: { - setGraphMode: (mode: 'profit' | 'value') => void - graphMode: string -}) { - const { setGraphMode, graphMode } = props - return ( - - { - setGraphMode('value') - }} - xs={true} - className="z-50" - > - Value - - { - setGraphMode('profit') - }} - xs={true} - className="z-50" - > - Profit - - - ) -}