Fixed possibly nullable useFetch or useSend result data
This commit is contained in:
parent
40c5f08dfe
commit
8220b43e9b
@ -29,7 +29,7 @@ const fallbackError = <T>(res: UseFetchReturn<T>) => (
|
|||||||
gotError(res) ? res.error : res.data
|
gotError(res) ? res.error : res.data
|
||||||
)
|
)
|
||||||
|
|
||||||
function useFetch<R, T>(
|
function useFetch<R, T extends NonNullable<unknown>>(
|
||||||
url: string,
|
url: string,
|
||||||
method: RequestInit['method'],
|
method: RequestInit['method'],
|
||||||
needAuth: boolean,
|
needAuth: boolean,
|
||||||
|
@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom'
|
|||||||
import { getToken } from '../utils/auth'
|
import { getToken } from '../utils/auth'
|
||||||
import { handleHTTPErrors, isAborted } from '../utils'
|
import { handleHTTPErrors, isAborted } from '../utils'
|
||||||
|
|
||||||
function useSend<R, T>(
|
function useSend<R, T extends NonNullable<unknown>>(
|
||||||
url: string,
|
url: string,
|
||||||
method: RequestInit['method'],
|
method: RequestInit['method'],
|
||||||
needAuth: boolean,
|
needAuth: boolean,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user