Skip to content

Commit

Permalink
remove ai from sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
mantikoros committed Dec 3, 2024
1 parent 36cdc03 commit 891fbcd
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions web/components/nav/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { ReportsIcon } from '../reports-icon'
import { AddFundsButton } from '../profile/add-funds-button'
import { Col } from '../layout/col'
import { TbPigMoney } from 'react-icons/tb'
import { PiRobotBold } from 'react-icons/pi'
// import { PiRobotBold } from 'react-icons/pi'

export default function Sidebar(props: {
className?: string
Expand Down Expand Up @@ -148,11 +148,11 @@ const getDesktopNav = (
href: `/notifications`,
icon: NotificationsIcon,
},
{
name: 'AI',
href: '/ai',
icon: PiRobotBold,
},
// {
// name: 'AI',
// href: '/ai',
// icon: PiRobotBold,
// },
// {
// name: 'TV',
// href: '/tv',
Expand Down Expand Up @@ -204,11 +204,11 @@ const getMobileNav = (

return buildArray<NavItem>(
{ name: 'Leagues', href: '/leagues', icon: TrophyIcon },
{
name: 'AI',
href: '/ai',
icon: PiRobotBold,
},
// {
// name: 'AI',
// href: '/ai',
// icon: PiRobotBold,
// },
{
name: 'Messages',
href: '/messages',
Expand Down

0 comments on commit 891fbcd

Please sign in to comment.