From 8220b43e9b232e66db782ac235a8d57a839f36b6 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Thu, 27 Jul 2023 16:50:26 +0300 Subject: [PATCH] Fixed possibly nullable useFetch or useSend result data --- front/src/hooks/useFetch.ts | 2 +- front/src/hooks/useSend.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/hooks/useFetch.ts b/front/src/hooks/useFetch.ts index 327ba63..e20a86e 100644 --- a/front/src/hooks/useFetch.ts +++ b/front/src/hooks/useFetch.ts @@ -29,7 +29,7 @@ const fallbackError = (res: UseFetchReturn) => ( gotError(res) ? res.error : res.data ) -function useFetch( +function useFetch>( url: string, method: RequestInit['method'], needAuth: boolean, diff --git a/front/src/hooks/useSend.ts b/front/src/hooks/useSend.ts index 48345bd..12e1839 100644 --- a/front/src/hooks/useSend.ts +++ b/front/src/hooks/useSend.ts @@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom' import { getToken } from '../utils/auth' import { handleHTTPErrors, isAborted } from '../utils' -function useSend( +function useSend>( url: string, method: RequestInit['method'], needAuth: boolean,