Skip to content

Commit 8474f42

Browse files
fixed
1 parent 8ed3c6e commit 8474f42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ui/layouts/runs/RunDetail/useService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface ServiceInterface {
1313

1414
export const useService = (): ServiceInterface => {
1515
const dispatch = useDispatch();
16-
const { id, runId } = useParams<RunDetailRouteParams>();
16+
const { runId } = useParams<RunDetailRouteParams>();
1717
const [isMounted, setIsMounted] = useState(false);
1818

1919
useEffect(() => {

src/ui/layouts/settings/Organization/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
PrimaryButton,
99
LinkBox,
1010
} from '../../../components';
11-
import { useRequestOnMount, useDispatch } from '../../../hooks';
11+
import { useDispatch } from '../../../hooks';
1212
import { Table } from '../../common/Table';
1313
import { translate } from './translate';
1414
import { useMemberHeaderCols } from './useHeaderCols';

0 commit comments

Comments
 (0)