Fix TypeScript unused variable errors

This commit is contained in:
2026-01-06 01:54:23 +01:00
parent 90eb4b0c43
commit 50a3c7fe24
4 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ import { Link, Outlet, useNavigate } from 'react-router-dom'
import { useAuth } from '../context/AuthContext'
export function AdminLayout() {
const { user, logout } = useAuth()
const { logout } = useAuth()
const navigate = useNavigate()
async function handleLogout() {