@@ -3,18 +3,18 @@ import React from 'react';
33import { routePaths } from '../../../../routes/routePaths' ;
44import {
55 camelCaseToParagraph ,
6- formatDateToDisplayOnTable ,
6+ // formatDateToDisplayOnTable,
77} from '../../../../utils' ;
8- import { useHistory , useLocationPath , useSelector } from '../../../hooks' ;
8+ import { useLocationPath , useSelector } from '../../../hooks' ;
99
1010import { BasePage } from '../BasePage' ;
1111import { Configuration } from './Configuration' ;
1212import { DAG } from '../../../components/dag' ;
1313import { useService } from './useService' ;
1414
15- import { Box , Paragraph } from '../../../components' ;
15+ // import { Box, Paragraph } from '../../../components';
1616
17- import { RunStatus } from './components' ;
17+ // import { RunStatus } from './components';
1818import { projectSelectors } from '../../../../redux/selectors' ;
1919import { Runs } from '../StackDetail/Runs' ;
2020
@@ -26,8 +26,8 @@ export interface RunDetailRouteParams {
2626
2727export const RunDetail : React . FC = ( ) => {
2828 const locationPath = useLocationPath ( ) ;
29- const history = useHistory ( ) ;
30- const { stackComponentId, runId, run , fetching } = useService ( ) ;
29+ // const history = useHistory();
30+ const { stackComponentId, runId, fetching } = useService ( ) ;
3131 const selectedProject = useSelector ( projectSelectors . selectedProject ) ;
3232 const tabPages = [
3333 {
@@ -82,15 +82,15 @@ export const RunDetail: React.FC = () => {
8282 ) ,
8383 } ,
8484 ] ;
85- const boxStyle = {
86- backgroundColor : '#E9EAEC' ,
87- padding : '10px 0' ,
88- borderRadius : '8px' ,
89- marginTop : '20px' ,
90- display : 'flex' ,
91- justifyContent : 'space-around' ,
92- } ;
93- const headStyle = { color : '#828282' } ;
85+ // const boxStyle = {
86+ // backgroundColor: '#E9EAEC',
87+ // padding: '10px 0',
88+ // borderRadius: '8px',
89+ // marginTop: '20px',
90+ // display: 'flex',
91+ // justifyContent: 'space-around',
92+ // };
93+ // const headStyle = { color: '#828282' };
9494
9595 return (
9696 < BasePage
0 commit comments