From e07448f67003a0ff615640035bbded69bfa598e7 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Mon, 17 Jan 2022 13:03:57 +0530 Subject: [PATCH] fix(dashboard): remove unused var --- dashboard/src/contexts/AuthContext.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/dashboard/src/contexts/AuthContext.tsx b/dashboard/src/contexts/AuthContext.tsx index 6a1c57e..5c585e8 100644 --- a/dashboard/src/contexts/AuthContext.tsx +++ b/dashboard/src/contexts/AuthContext.tsx @@ -17,7 +17,6 @@ export const AuthContextProvider = ({ children }: { children: any }) => { const { pathname } = useLocation(); const navigate = useNavigate(); - const isOnboardingComplete = hasAdminSecret(); const [{ fetching, data, error }] = useQuery({ query: AdminSessionQuery, });