diff --git a/docs/rtk-query/api/created-api/hooks.mdx b/docs/rtk-query/api/created-api/hooks.mdx index 357a710b53..bb22e87adf 100644 --- a/docs/rtk-query/api/created-api/hooks.mdx +++ b/docs/rtk-query/api/created-api/hooks.mdx @@ -277,7 +277,7 @@ type UseQueryResult = { isSuccess: boolean // Query has data from a successful load. isError: boolean // Query is currently in an "error" state. - refetch: () => void // A function to force refetch the query + refetch: () => QueryActionCreatorResult // A function to force refetch the query - returns a Promise with additional methods } ```