Skip to content

Commit 0ee86d0

Browse files
committed
Fixed linting errors
1 parent fc63a2a commit 0ee86d0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/ui/components/dag/useService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useEffect } from 'react';
1+
// import { useEffect } from 'react';
22
import { useSelector } from 'react-redux';
33
import { runSelectors } from '../../../redux/selectors';
44

src/ui/layouts/stacks/RunDetail/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useEffect } from 'react';
1+
import React from 'react';
22

33
import { routePaths } from '../../../../routes/routePaths';
44
import { translate } from './translate';
@@ -14,7 +14,7 @@ import { RunTime } from '../RunTime';
1414
import { KeyValue, RunStatus } from './components';
1515
// import { Results } from './Results';
1616
// import { Tensorboard } from './Tensorboard';
17-
import { formatMoney } from '../../../../utils/money';
17+
import { formatMoney } from '../../../../utils';
1818
import { truncate } from '../../../../utils';
1919

2020
const getTabPages = ({
@@ -94,7 +94,7 @@ export const RunDetail: React.FC = () => {
9494
tabBasePath={routePaths.run.stack.base(runId, stackId)}
9595
breadcrumbs={breadcrumbs}
9696
>
97-
{/* <FlexBox marginTop="xxl" padding="lg" className={styles.box}>
97+
<FlexBox marginTop="xxl" padding="lg" className={styles.box}>
9898
<KeyValue width="10%" label={translate('box.runId.text')}>
9999
<Truncate maxLines={1}>
100100
<Paragraph size="small">
@@ -146,7 +146,7 @@ export const RunDetail: React.FC = () => {
146146
</Paragraph>
147147
</Truncate>
148148
</KeyValue>
149-
</FlexBox> */}
149+
</FlexBox>
150150
</BasePage>
151151
);
152152
};

0 commit comments

Comments
 (0)