diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 5aeafb0..af58953 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -4322,6 +4322,10 @@ function doCommentAbandon(comment_id) { dispatch({ type: COMMENT_ABANDON_FAILED }); + dispatch(doToast({ + message: 'Your channel is still being setup, try again in a few moments.', + isError: true + })); } }).catch(error => { dispatch({ diff --git a/src/redux/actions/comments.js b/src/redux/actions/comments.js index 4c6f876..5ddd34b 100644 --- a/src/redux/actions/comments.js +++ b/src/redux/actions/comments.js @@ -135,6 +135,12 @@ export function doCommentAbandon(comment_id: string) { dispatch({ type: ACTIONS.COMMENT_ABANDON_FAILED, }); + dispatch( + doToast({ + message: 'Your channel is still being setup, try again in a few moments.', + isError: true, + }) + ); } }) .catch(error => {