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
6 changes: 3 additions & 3 deletions docs/src/pages/guides/mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ function App() {

A mutation can only be in one of the following states at any given moment:

- `isIdle` or `status === 'idle' - The mutation is currently idle or in a fresh/reset state
- `isLoading` or `status === 'loading' - The mutation is currently running
- `isIdle` or `status === 'idle'` - The mutation is currently idle or in a fresh/reset state
- `isLoading` or `status === 'loading'` - The mutation is currently running
- `isError` or `status === 'error'` - The mutation encountered an error
- `isSuccess` or `status === 'success' - The mutation was successful and mutation data is available
- `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:

Expand Down