diff --git a/frontend/src/pages/admin/_auth/_appshell/dashboard.tsx b/frontend/src/pages/admin/_auth/_appshell/dashboard.tsx index 9cd4adf9..413a9769 100644 --- a/frontend/src/pages/admin/_auth/_appshell/dashboard.tsx +++ b/frontend/src/pages/admin/_auth/_appshell/dashboard.tsx @@ -29,7 +29,7 @@ export const Route = createFileRoute('/admin/_auth/_appshell/dashboard')({ function RouteComponent() { const { accessToken } = useAuth(); const [projects, setProjects] = useState([]); - const [company, setCompany] = useState(null); + const [_, setCompany] = useState(null); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); @@ -81,4 +81,4 @@ function RouteComponent() { )} ); -} \ No newline at end of file +}