diff --git a/src/components/dashboard/sidebar/organization-selector.tsx b/src/components/dashboard/sidebar/organization-selector.tsx index abe32d5..386a551 100644 --- a/src/components/dashboard/sidebar/organization-selector.tsx +++ b/src/components/dashboard/sidebar/organization-selector.tsx @@ -53,23 +53,25 @@ const OrganizationSelector = (): ReactElement => { diff --git a/src/components/dashboard/sidebar/sidebar-links.tsx b/src/components/dashboard/sidebar/sidebar-links.tsx index 7dd34a3..70bedbe 100644 --- a/src/components/dashboard/sidebar/sidebar-links.tsx +++ b/src/components/dashboard/sidebar/sidebar-links.tsx @@ -5,15 +5,7 @@ import { SidebarLink } from "@/app/types/dashboard/sidebar-link"; import SimpleTooltip from "@/components/simple-tooltip"; import Link from "next/link"; import { cn } from "@/lib/utils"; -import { - ChartBarSquareIcon, - ClipboardIcon, - Cog6ToothIcon, - FireIcon, - HomeIcon, - PencilSquareIcon, - WrenchIcon, -} from "@heroicons/react/24/outline"; +import { ClipboardIcon, HomeIcon } from "@heroicons/react/24/outline"; import { useOrganizationContext } from "@/app/provider/organization-provider"; import { OrganizationState } from "@/app/store/organization-store"; import { usePathname } from "next/navigation"; @@ -30,31 +22,31 @@ const links: SidebarLink[] = [ icon: , href: "/dashboard/org/status-pages", }, - { - name: "Automations", - icon: , - href: "/dashboard/org/automations", - }, - { - name: "Incidents", - icon: , - href: "/dashboard/org/incidents", - }, - { - name: "Insights", - icon: , - href: "/dashboard/org/insights", - }, - { - name: "Audit Logs", - icon: , - href: "/dashboard/org/audit", - }, - { - name: "Settings", - icon: , - href: "/dashboard/org/settings", - }, + // { + // name: "Automations", + // icon: , + // href: "/dashboard/org/automations", + // }, + // { + // name: "Incidents", + // icon: , + // href: "/dashboard/org/incidents", + // }, + // { + // name: "Insights", + // icon: , + // href: "/dashboard/org/insights", + // }, + // { + // name: "Audit Logs", + // icon: , + // href: "/dashboard/org/audit", + // }, + // { + // name: "Settings", + // icon: , + // href: "/dashboard/org/settings", + // }, ]; /** @@ -87,7 +79,7 @@ const Links = (): ReactElement => { > {
{link.icon}
- {link.name} + + {link.name} + ); diff --git a/src/components/dashboard/sidebar/sidebar.tsx b/src/components/dashboard/sidebar/sidebar.tsx index 7158cfc..5b2c142 100644 --- a/src/components/dashboard/sidebar/sidebar.tsx +++ b/src/components/dashboard/sidebar/sidebar.tsx @@ -23,7 +23,7 @@ const Sidebar = (): ReactElement => { (state: UserState) => state.user ); return hasFlag(user as User, UserFlag.COMPLETED_ONBOARDING) ? ( -