Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenn Creighton committed Apr 22, 2021
1 parent e7a8071 commit 4e0ab87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
- During server-side rendering, allow initial `useQuery` calls to return final `{ loading: false, data }` results when the cache already contains the necessary data. <br/>
[@benjamn](https://github.com/benjamn) in [#7983](https://github.com/apollographql/apollo-client/pull/7983)

- Prevent `undefined` mutation result in useMutation <br/>
[@jcreighton](https://github.com/jcreighton) in [#8018](https://github.com/apollographql/apollo-client/pull/8018)

## Apollo Client 3.3.14

### Improvements
Expand Down
3 changes: 0 additions & 3 deletions src/react/data/MutationData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ export class MutationData<
return this.mutate(mutationFunctionOptions)
.then((response: FetchResult<TData>) => {
this.onMutationCompleted(response, mutationId);
if (response.errors) {

}
return response;
})
.catch((error: ApolloError) => {
Expand Down

0 comments on commit 4e0ab87

Please sign in to comment.