Removing dispatch of fetchContextFail

No need to flash error message when status is not found.
The column will display the message "status not found"
This commit is contained in:
Rakib Hasan 2017-02-19 08:13:57 +00:00
parent 8e760d5f62
commit 910df0f795
1 changed files with 0 additions and 1 deletions

View File

@ -105,7 +105,6 @@ export function fetchContext(id) {
}).catch(error => {
dispatch(deleteStatusSuccess(id));
dispatch(deleteFromTimelines(id));
dispatch(fetchContextFail(id, error));
});
};
};