From 04b9dd8c5b483063ad009f3564247be8d6c89e47 Mon Sep 17 00:00:00 2001 From: Lucas Boebel Date: Sat, 9 Dec 2023 07:38:15 -0500 Subject: [PATCH] removing start/end from CashFlowGraph --- .../src/components/reports/graphs/CashFlowGraph.tsx | 4 ---- .../src/components/reports/reports/CashFlow.tsx | 2 -- 2 files changed, 6 deletions(-) diff --git a/packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx b/packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx index ab92a5e6f38..942a44f9b65 100644 --- a/packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx +++ b/packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx @@ -16,14 +16,10 @@ import Container from '../Container'; import Tooltip from '../Tooltip'; type CashFlowGraphProps = { - start: string; - end: string; graphData: { expenses; income; balances }; isConcise: boolean; }; function CashFlowGraph({ - start, - end, graphData, isConcise, }: CashFlowGraphProps) { diff --git a/packages/desktop-client/src/components/reports/reports/CashFlow.tsx b/packages/desktop-client/src/components/reports/reports/CashFlow.tsx index 8e66d809433..f01f139f838 100644 --- a/packages/desktop-client/src/components/reports/reports/CashFlow.tsx +++ b/packages/desktop-client/src/components/reports/reports/CashFlow.tsx @@ -170,8 +170,6 @@ export default function CashFlow(): JSX.Element {