Skip to content

Commit 7b99a50

Browse files
committed
GFF-544 - get packages to build
1 parent e3dcf05 commit 7b99a50

File tree

5 files changed

+46
-44
lines changed

5 files changed

+46
-44
lines changed

package-lock.json

Lines changed: 40 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/frontend/src/features/CohortSimilarity/charts/BarComparison.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ const processComparisonData = (
3636
];
3737
};
3838

39-
const BarComparison: React.FC<ComparisonChartProps> = ({
39+
const BarComparison = ({
4040
baseDataset,
4141
comparisonDataset,
4242
title,
4343
yAxisLabel = 'percent',
44-
}) => {
44+
} : ComparisonChartProps) => {
4545
const categories = baseDataset.data.map((d: any) =>
4646
truncateString(processLabel(d.key), 35),
4747
);

packages/frontend/src/features/CohortSimilarity/charts/RadarComparison.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ const processComparisonData = (
4848
};
4949
};
5050

51-
const RadarComparison: React.FC<ComparisonChartProps> = ({
51+
const RadarComparison = ({
5252
baseDataset,
5353
comparisonDataset,
5454
title,
5555
yAxisLabel = 'percent',
56-
}) => {
56+
} : ComparisonChartProps) => {
5757
const categories = baseDataset.data.map((d: any) =>
5858
truncateString(processLabel(d.key), 35),
5959
);

packages/frontend/src/features/Discovery/ActionBar/DataLibraryActionButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface ExportActionButtonProps {
1212
showIcon?: boolean;
1313
loginRequired?: boolean;
1414
onClick?: (items: Record<string, any> | Array<any>) => void;
15-
ref: React.RefObject<HTMLButtonElement>;
15+
ref?: React.RefObject<HTMLButtonElement>;
1616
}
1717

1818
const DataLibraryActionButton = (

packages/sampleCommons/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"@fontsource/source-sans-pro": "^5.0.8",
3030
"@gen3/core": "file:../core",
3131
"@gen3/frontend": "file:../frontend",
32+
"@graphiql/react": "^0.30.0",
3233
"@mantine/core": "^8.3.15",
3334
"@mantine/dates": "^8.3.15",
3435
"@mantine/form": "^8.3.15",

0 commit comments

Comments
 (0)