diff --git a/packages/query-core/src/types.ts b/packages/query-core/src/types.ts index 33174eedd8..98a25b3f03 100644 --- a/packages/query-core/src/types.ts +++ b/packages/query-core/src/types.ts @@ -525,7 +525,6 @@ export interface QueryObserverBaseResult< > { /** * The last successfully resolved data for the query. - * - Defaults to `undefined`. */ data: TData | undefined /** @@ -976,12 +975,10 @@ export interface MutationObserverBaseResult< > extends MutationState { /** * The last successfully resolved data for the mutation. - * - Defaults to `undefined`. */ data: TData | undefined /** * The variables object passed to the `mutationFn`. - * - Defaults to `undefined`. */ variables: TVariables | undefined /**