chore: fix typo

This commit is contained in:
dec0dOS 2021-05-24 22:46:55 +03:00
parent e723005f7b
commit 626f096a02
4 changed files with 6 additions and 6 deletions

View file

@ -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;

View file

@ -0,0 +1 @@
export { default } from "./NetworkManagement";

View file

@ -1 +0,0 @@
export { default } from "./NetworkManagment";