We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99e359 commit 25adb99Copy full SHA for 25adb99
src/app/components/StateRoute/PerformanceVisx/BarGraphComparison.tsx
@@ -193,7 +193,7 @@ const BarGraphComparison = (props: BarGraphComparisonProps): JSX.Element => {
193
}
194
const seriesList: ActionObj[][] = comparison.map((series: Series) => series.data.barStack);
195
const actionsList: ActionObj[] = seriesList.flat();
196
- const testList = actionsList.map((elem: ActionObj) => elem.name);
+ const testList: string[] = actionsList.map((elem: ActionObj) => elem.name);
197
198
const finalList = [];
199
for (let i = 0; i < testList.length; i += 1) {
0 commit comments