Skip to content

Commit d55e2a6

Browse files
committed
fix: resolve CI build failures by fixing import paths and removing unused variables
1 parent 4ac5040 commit d55e2a6

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

test-result-summary-client/src/Dashboard/Widgets/ReleaseHealthWidget.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import React, { Component } from 'react';
22
import { Table, Tooltip, Progress, Typography } from 'antd';
3-
import { fetchData } from '../../../utils/Utils';
4-
5-
const { Title: AntTitle } = Typography;
3+
import { fetchData } from '../../utils/Utils';
64

75
export default class ReleaseHealthWidget extends Component {
86
static Title = (props) => 'Release Health Overview';

test-result-summary-client/src/TrafficLight/MetricsTable.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { useEffect, useState } from 'react';
22
import { Table, Typography, Switch } from 'antd';
3-
import { DeleteTwoTone } from '@ant-design/icons';
43
import { fetchData } from '../utils/Utils';
54
import BenchmarkMath from '../utils/BenchmarkMathCalculation';
65
import * as math from 'mathjs';

0 commit comments

Comments
 (0)