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 {