Added biome for formatting, code formatted

This commit is contained in:
2024-05-08 16:50:25 +02:00
parent dc446fe8dc
commit e62ef8695b
15 changed files with 678 additions and 510 deletions

View File

@ -1,6 +1,6 @@
import { useAuth } from "../context/AuthContext";
export function useIsAutheticated() {
const { authState } = useAuth();
return authState.authenticated
const { authState } = useAuth();
return authState.authenticated;
}