Skip to content

Commit 127d839

Browse files
committed
fix
1 parent c13b1d0 commit 127d839

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

src/containers/Node/Threads/Threads.scss

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/containers/Node/Threads/Threads.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,12 @@ import {ResponseError} from '../../../components/Errors/ResponseError';
22
import {LoaderWrapper} from '../../../components/LoaderWrapper/LoaderWrapper';
33
import {ResizeableDataTable} from '../../../components/ResizeableDataTable/ResizeableDataTable';
44
import {nodeApi} from '../../../store/reducers/node/node';
5-
import {cn} from '../../../utils/cn';
65
import {DEFAULT_TABLE_SETTINGS} from '../../../utils/constants';
76
import {useAutoRefreshInterval} from '../../../utils/hooks';
87

98
import {columns} from './columns';
109
import i18n from './i18n';
1110

12-
import './Threads.scss';
13-
14-
const b = cn('threads');
15-
1611
interface ThreadsProps {
1712
nodeId: string;
1813
className?: string;
@@ -32,7 +27,7 @@ export function Threads({nodeId, className}: ThreadsProps) {
3227
const data = nodeData?.Threads || [];
3328

3429
return (
35-
<LoaderWrapper loading={isLoading} className={b(null, className)}>
30+
<LoaderWrapper loading={isLoading} className={className}>
3631
{error ? <ResponseError error={error} /> : null}
3732
<ResizeableDataTable
3833
columnsWidthLSKey={THREADS_COLUMNS_WIDTH_LS_KEY}

0 commit comments

Comments
 (0)