Minor api fixes, made useId hook login optional
This commit is contained in:
parent
d2a3393a11
commit
2b5a917107
@ -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 => {
|
||||
|
@ -4,7 +4,7 @@ import { UseFetchReturn } from '../useFetch'
|
||||
|
||||
const useUser = (): UseFetchReturn<User> => (
|
||||
// useFetch(
|
||||
// composeUserUrl(getToken()),
|
||||
// composeUserURL(),
|
||||
// 'GET',
|
||||
// true,
|
||||
// isUserResponse,
|
||||
|
@ -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')
|
||||
}
|
||||
|
||||
|
@ -81,7 +81,7 @@ function useSend<R, T extends NonNullable<unknown>>(
|
||||
}
|
||||
|
||||
if (import.meta.env.DEV) {
|
||||
console.log(url, params, err)
|
||||
console.error(url, params, err)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user