It’s hard for me to figure out why this is happening, but the promise was essentially cut for me, returning something like:
return {
type: STORY_ACTIONS.STORY_SPOTIFY_REQUEST,
payload: request
}
However, now I need to transmit the same information with him
return {
order: 0,
type: STORY_ACTIONS.STORY_SPOTIFY_REQUEST,
payload: request
}
returning this result returns unresolved promises inside my reducer instead of data. I tried to rename orderto something like positionor indexnothing else. My first example is returnworking absolutely fine.
source
share