Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ const classNames = (...classes: (string | false | null | undefined)[]) =>
export default function Layout(props: LayoutProps) {
const userNavigation = [
{ name: 'Admin Settings', href: '/app/settings' },
{ name: 'Your Profile', href: '#' },
{ name: 'Logout', href: '/app/login' },
]

Expand Down
7 changes: 2 additions & 5 deletions components/Settings.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Cog6ToothIcon, UserCircleIcon } from '@heroicons/react/24/outline'
import { Cog6ToothIcon } from '@heroicons/react/24/outline'

type Intent = 'sso' | 'dsync' | 'audit_logs' | 'domain_verification'

Expand All @@ -8,10 +8,7 @@ type SettingsProps = {
message: string | null
}

const subNavigation = [
{ name: 'Admin Settings', href: '#', icon: Cog6ToothIcon, current: true },
{ name: 'Your Profile', href: '#', icon: UserCircleIcon, current: false },
]
const subNavigation = [{ name: 'Admin Settings', href: '#', icon: Cog6ToothIcon, current: true }]

const classNames = (...classes: (string | false | null | undefined)[]) =>
classes.filter(Boolean).join(' ')
Expand Down
Loading