Skip to content
Snippets Groups Projects
Commit 1f91c62d authored by Дмитрий Кольцов's avatar Дмитрий Кольцов Committed by Дмитрий Кольцов
Browse files

fix(webui): remove Users from side menu

Users page was merged while users HTTP backend
is not ready yet.
Remove Users nav link until backend is implemented
parent b91f89fb
No related branches found
No related tags found
1 merge request!1149fix(webui): remove Users from side menu
Pipeline #46318 failed
......@@ -9,7 +9,6 @@ import { InstancesIcon } from "shared/icons/navLinks/InstancesIcon";
import { URL_CONFIG } from "shared/router/config";
import { useLsState } from "shared/localStorage/hooks/useLsState";
import { useTranslation } from "shared/intl";
import { UsersIcon } from "shared/icons/navLinks/UsersIcon";
import styles from "./SideMenu.module.scss";
......@@ -35,11 +34,6 @@ export const SideMenu = () => {
label: sideMenuTranslations.navLinks.instances.label,
icon: <InstancesIcon className={styles.icon} />,
},
{
to: URL_CONFIG.USERS.absolutePath,
label: sideMenuTranslations.navLinks.users.label,
icon: <UsersIcon className={styles.icon} />,
},
];
return (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment