...
return Promise.resolve(dispatch(action)) // dispatch transformed action
.then((res) => {
...
=> if (res) res._dispatched = true // tell `middleware/call/index.js` to NOT automatically dispatch callback returns
return res
})
}```
when my dispatched method resolved with a string return value.