added wrenchboard icons

This commit is contained in:
Ebube
2023-10-18 00:06:12 +01:00
parent 122e2c59b8
commit d092c6f909
11 changed files with 43 additions and 44 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ const AuthRoute = ({ children }) => {
const router = useRouter();
useEffect(() => {
const isAuthenticated = false; // In a real application, this would be determined based on the user's authentication status.
const isAuthenticated = true; // In a real application, this would be determined based on the user's authentication status.
if (!isAuthenticated) {
router.push("/authentication/sign-in/");