Skip to content

Commit

Permalink
remove settings button
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshj01 committed Dec 26, 2024
1 parent e5fdd11 commit 53bf873
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/(main)/_components/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"use client";
import { useNavbar } from '@/lib/Context/PSNavbarProvider';
import PencilSquareIcon from '@heroicons/react/24/solid/PencilSquareIcon';
import Link from 'next/link';
import { useRouter } from 'next/navigation';
import React, { useCallback, useEffect, useState } from 'react';
import { useSidebar } from '../_hooks/useSidebar';
Expand Down Expand Up @@ -152,7 +151,7 @@ const Sidebar: React.FC = () => {
<ShortCutsGuide />
<ThemeSwitcher />
</div>
<Link href="/settings">Settings</Link>
{/* <Link href="/settings">Settings</Link> */}
<LoginMenu onLogOut={handleLogout} onLogin={handleLogin} loading={loading} onSettings={() => {
router.push('/settings');
}} />
Expand Down

0 comments on commit 53bf873

Please sign in to comment.