diff --git a/front/src/api/user/index.ts b/front/src/api/user/index.ts index 7354125..9f489b4 100644 --- a/front/src/api/user/index.ts +++ b/front/src/api/user/index.ts @@ -17,7 +17,7 @@ const initialUser: User = import.meta.env.DEV ? { // Temporary, until api is rea } const composeUserURL = () => ( - API_URL + '/user?' + API_URL + '/users/me?' ) const processUser = (data: UserResponse): User => { diff --git a/front/src/hooks/api/useUser.ts b/front/src/hooks/api/useUser.ts index 89be949..758ba8f 100644 --- a/front/src/hooks/api/useUser.ts +++ b/front/src/hooks/api/useUser.ts @@ -4,7 +4,7 @@ import { UseFetchReturn } from '../useFetch' const useUser = (): UseFetchReturn => ( // useFetch( - // composeUserUrl(getToken()), + // composeUserURL(), // 'GET', // true, // isUserResponse, diff --git a/front/src/hooks/useId.ts b/front/src/hooks/useId.ts index 4145876..c7b28c1 100644 --- a/front/src/hooks/useId.ts +++ b/front/src/hooks/useId.ts @@ -2,12 +2,12 @@ import { useNavigate } from 'react-router-dom' import { getId } from '../utils/auth' -function useId() { +function useId(require = false) { const navigate = useNavigate() const id = getId() - if (id < 0) { + if (require && id < 0) { navigate('/login') } diff --git a/front/src/hooks/useSend.ts b/front/src/hooks/useSend.ts index 8d720d8..4e925cf 100644 --- a/front/src/hooks/useSend.ts +++ b/front/src/hooks/useSend.ts @@ -81,7 +81,7 @@ function useSend>( } if (import.meta.env.DEV) { - console.log(url, params, err) + console.error(url, params, err) } }