mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2025-07-08 05:51:15 -07:00
chore: fix typo
This commit is contained in:
parent
e723005f7b
commit
626f096a02
4 changed files with 6 additions and 6 deletions
|
@ -18,7 +18,7 @@ import DeleteIcon from "@material-ui/icons/Delete";
|
|||
|
||||
import API from "utils/API";
|
||||
|
||||
function NetworkManagment() {
|
||||
function NetworkManagement() {
|
||||
const { nwid } = useParams();
|
||||
const history = useHistory();
|
||||
const [open, setOpen] = useState(false);
|
||||
|
@ -45,7 +45,7 @@ function NetworkManagment() {
|
|||
return (
|
||||
<Accordion>
|
||||
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
||||
<Typography>Managment</Typography>
|
||||
<Typography>Management</Typography>
|
||||
</AccordionSummary>
|
||||
<AccordionDetails>
|
||||
<Button
|
||||
|
@ -77,4 +77,4 @@ function NetworkManagment() {
|
|||
);
|
||||
}
|
||||
|
||||
export default NetworkManagment;
|
||||
export default NetworkManagement;
|
1
frontend/src/components/NetworkManagement/index.jsx
Normal file
1
frontend/src/components/NetworkManagement/index.jsx
Normal file
|
@ -0,0 +1 @@
|
|||
export { default } from "./NetworkManagement";
|
|
@ -1 +0,0 @@
|
|||
export { default } from "./NetworkManagment";
|
|
@ -10,7 +10,7 @@ import NetworkHeader from "components/NetworkHeader";
|
|||
import NetworkSettings from "components/NetworkSettings";
|
||||
import NetworkMembers from "components/NetworkMembers";
|
||||
import NetworkRules from "components/NetworkRules";
|
||||
import NetworkManagment from "components/NetworkManagment";
|
||||
import NetworkManagement from "components/NetworkManagement";
|
||||
|
||||
import API from "utils/API";
|
||||
|
||||
|
@ -54,7 +54,7 @@ function Network() {
|
|||
)}
|
||||
<NetworkMembers />
|
||||
{network["config"] && <NetworkRules network={network} />}
|
||||
<NetworkManagment />
|
||||
<NetworkManagement />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue