File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
portal-ui/src/screens/Console/Configurations/ConfigurationPanels Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,7 @@ import ImportConfigButton from "./ImportConfigButton";
38
38
import { Box } from "@mui/material" ;
39
39
import HelpMenu from "../../HelpMenu" ;
40
40
import { setHelpName } from "../../../../systemSlice" ;
41
- import { AppState , useAppDispatch } from "../../../../store" ;
42
- import { useSelector } from "react-redux" ;
41
+ import { useAppDispatch } from "../../../../store" ;
43
42
44
43
interface IConfigurationOptions {
45
44
classes : any ;
@@ -75,14 +74,10 @@ const ConfigurationOptions = ({ classes }: IConfigurationOptions) => {
75
74
dispatch ( setHelpName ( "settings_Region" ) ) ;
76
75
// eslint-disable-next-line react-hooks/exhaustive-deps
77
76
} , [ ] ) ;
78
- const systemHelpName = useSelector (
79
- ( state : AppState ) => state . system . helpName
80
- ) ;
81
77
82
78
return (
83
79
< Fragment >
84
80
< PageHeaderWrapper label = { "Settings" } actions = { < HelpMenu /> } />
85
- { systemHelpName }
86
81
< PageLayout >
87
82
< Grid item xs = { 12 } >
88
83
< div
You can’t perform that action at this time.
0 commit comments