You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a logical error in the features/posts/postsSlice.ts example of "preparing payload" section of Part 4: Using Redux Data tutorial. The prepare callback function should receive only one parameter—the action object from the action creator. However, the example incorrectly passes two arguments, causing an error.
Redux Essentials -> Using Redux data
There is a logical error in the features/posts/postsSlice.ts example of "preparing payload" section of Part 4: Using Redux Data tutorial. The prepare callback function should receive only one parameter—the action object from the action creator. However, the example incorrectly passes two arguments, causing an error.
Below are my suggested solutions to fix this bug:
#Solution 1:
##Solution 2:
The text was updated successfully, but these errors were encountered: