Skip to content

Commit a4a45a0

Browse files
remove logout as there is currently no intention to login in the first place
1 parent 759df27 commit a4a45a0

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/components/navigation/Navigation.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ const Navigation = () => {
88
const [navOpacity, setNavOpacity] = useState<string>('opacity-100')
99
const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null)
1010

11-
const handleLogout = () => {}
12-
1311
useNavigationOpacity({ setNavOpacity, timerRef })
1412

1513
return (
@@ -20,15 +18,6 @@ const Navigation = () => {
2018
>
2119
<div className="max-w-7xl flex items-center justify-between m-auto h-16 px-2 sm:px-4 py-1 md:py-2">
2220
<NavigationLogo />
23-
<button
24-
className="text-large px-4 py-2 rounded-lg hover:bg-stone-700 active:bg-stone-600"
25-
data-testid="logout"
26-
title="Logout"
27-
aria-label="Logout"
28-
onClick={handleLogout}
29-
>
30-
Logout
31-
</button>
3221
</div>
3322
</nav>
3423
)

0 commit comments

Comments
 (0)