File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/containers/Tenant/Schema/SchemaTree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ import {useDispatch} from 'react-redux';
3
3
4
4
import { NavigationTree } from 'ydb-ui-components' ;
5
5
6
- import { setCurrentSchemaPath , getSchema , preloadSchemas } from '../../../../store/reducers/schema' ;
7
- import { getSchemaAcl } from '../../../../store/reducers/schemaAcl' ;
6
+ import { setCurrentSchemaPath , preloadSchemas } from '../../../../store/reducers/schema' ;
8
7
import type { EPathType , TEvDescribeSchemeResult } from '../../../../types/api/schema' ;
9
8
10
9
import { mapPathTypeToNavigationTreeType } from '../../utils/schema' ;
@@ -54,8 +53,6 @@ export function SchemaTree(props: SchemaTreeProps) {
54
53
55
54
const handleActivePathUpdate = ( activePath : string ) => {
56
55
dispatch ( setCurrentSchemaPath ( activePath ) ) ;
57
- dispatch ( getSchema ( { path : activePath } ) ) ;
58
- dispatch ( getSchemaAcl ( { path : activePath } ) ) ;
59
56
} ;
60
57
61
58
useEffect ( ( ) => {
You can’t perform that action at this time.
0 commit comments