Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/pages/guides/mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ A mutation can only be in one of the following states at any given moment:
- `isError` or `status === 'error'` - The mutation encountered an error
- `isSuccess` or `status === 'success'` - The mutation was successful and mutation data is available

Beyond those primary state, more information is available depending on the state the mutation:
Beyond those primary states, more information is available depending on the state of the mutation:

- `error` - If the mutation is in an `isError` state, the error is available via the `error` property.
- `data` - If the mutation is in a `success` state, the data is available via the `data` property.
Expand Down