I want to update my content on same page, but after server update it shows old data
Name : Arnold Schwarzenegger
after i update my data Arnold Schwarzenegger to Schwarzenegger using redux-from, Its changed on server but it shows Arnold Schwarzenegger on page
After success, i want to replace state with new data, in my case i am using
EDIT
case 'EDIT_REQUEST':
return {} // checking the id is same or not using action ID
case 'EDIT_SUCCESS': // after server update
return {} // i want to change data using action id,
unfortunately action is not available her
case 'EDIT_FAILURE':
return {}