Skip to content

Commit 25adb99

Browse files
committed
Added typescript to const testList
1 parent b99e359 commit 25adb99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/StateRoute/PerformanceVisx/BarGraphComparison.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ const BarGraphComparison = (props: BarGraphComparisonProps): JSX.Element => {
193193
}
194194
const seriesList: ActionObj[][] = comparison.map((series: Series) => series.data.barStack);
195195
const actionsList: ActionObj[] = seriesList.flat();
196-
const testList = actionsList.map((elem: ActionObj) => elem.name);
196+
const testList: string[] = actionsList.map((elem: ActionObj) => elem.name);
197197

198198
const finalList = [];
199199
for (let i = 0; i < testList.length; i += 1) {

0 commit comments

Comments
 (0)