Fixed possibly nullable useFetch or useSend result data

This commit is contained in:
Dmitriy Shishkov 2023-07-27 16:50:26 +03:00
parent 40c5f08dfe
commit 8220b43e9b
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ const fallbackError = <T>(res: UseFetchReturn<T>) => (
gotError(res) ? res.error : res.data
)
function useFetch<R, T>(
function useFetch<R, T extends NonNullable<unknown>>(
url: string,
method: RequestInit['method'],
needAuth: boolean,

View File

@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom'
import { getToken } from '../utils/auth'
import { handleHTTPErrors, isAborted } from '../utils'
function useSend<R, T>(
function useSend<R, T extends NonNullable<unknown>>(
url: string,
method: RequestInit['method'],
needAuth: boolean,