Skip to content

Commit

Permalink
removing start/end from CashFlowGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasboebel committed Dec 9, 2023
1 parent c72a3b3 commit 04b9dd8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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({

Check warning on line 22 in packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx

View workflow job for this annotation

GitHub Actions / lint

Replace `⏎··graphData,⏎··isConcise,⏎` with `·graphData,·isConcise·`
start,
end,
graphData,
isConcise,
}: CashFlowGraphProps) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,6 @@ export default function CashFlow(): JSX.Element {
</View>

<CashFlowGraph

Check warning on line 172 in packages/desktop-client/src/components/reports/reports/CashFlow.tsx

View workflow job for this annotation

GitHub Actions / lint

Replace `⏎··········graphData={graphData}⏎··········isConcise={isConcise}⏎·······` with `·graphData={graphData}·isConcise={isConcise}`
start={start}
end={end}
graphData={graphData}
isConcise={isConcise}
/>
Expand Down

0 comments on commit 04b9dd8

Please sign in to comment.