Skip to content

Commit 5849d54

Browse files
committed
added nocheck for in progress file and comparison type to string temporarily
1 parent 6e41f04 commit 5849d54

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/app/components/FrontendTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface BarGraphBase {
5757
width: number,
5858
height: number,
5959
data: PerfData,
60-
comparison: Series[],
60+
comparison: string | Series[],
6161
}
6262

6363
export interface BarGraphComparisonProps extends BarGraphBase {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
import React, { useEffect, useState } from 'react';
23
import { BarStack } from '@visx/shape';
34
import { Group } from '@visx/group';

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
/* eslint-disable no-param-reassign */
23
import React, { useEffect } from 'react';
34
import { BarStack } from '@visx/shape';

0 commit comments

Comments
 (0)