Skip to content

Commit b663383

Browse files
authoredOct 1, 2024··
docs: Update mutations.md (#8105)
1 parent 0ccd60a commit b663383

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/framework/react/guides/mutations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,15 @@ There is a slight difference in handling `onSuccess`, `onError` and `onSettled`
226226
```tsx
227227
useMutation({
228228
mutationFn: addTodo,
229-
onSuccess: (data, error, variables, context) => {
229+
onSuccess: (data, variables, context) => {
230230
// Will be called 3 times
231231
},
232232
})
233233

234234
const todos = ['Todo 1', 'Todo 2', 'Todo 3']
235235
todos.forEach((todo) => {
236236
mutate(todo, {
237-
onSuccess: (data, error, variables, context) => {
237+
onSuccess: (data, variables, context) => {
238238
// Will execute only once, for the last mutation (Todo 3),
239239
// regardless which mutation resolves first
240240
},

0 commit comments

Comments
 (0)