Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Dec 12, 2023
1 parent 6ce78b0 commit add33fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ type ChooseGraphProps = {
setScrollWidth: (value: number) => void;
months: Month[];
};
export function ChooseGraph({

function ChooseGraph({
data,
mode,
graphType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Text from '../common/Text';
import View from '../common/View';

type ReportLegendProps = {
legend;
legend: Array<{ name: string; color: string }>;
groupBy: string;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ import Text from '../common/Text';
import View from '../common/View';
import PrivacyFilter from '../PrivacyFilter';

import { type DataEntity } from './entities';

type ReportSummaryProps = {
startDate: string;
endDate: string;
data;
data: DataEntity;
balanceTypeOp: string;
monthsCount: number;
};
Expand Down
2 changes: 1 addition & 1 deletion upcoming-release-notes/2046.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ category: Enhancements
authors: [carkom]
---

Updating variable naming as well as adding typescript to custom report files.
Adding typescript to custom report files and small functional changes.

0 comments on commit add33fc

Please sign in to comment.