diff --git a/client/coral-admin/src/actions/comments.js b/client/coral-admin/src/actions/comments.js index cac2d1da9..d4aee034e 100644 --- a/client/coral-admin/src/actions/comments.js +++ b/client/coral-admin/src/actions/comments.js @@ -28,10 +28,3 @@ export const hideBanUserDialog = (showDialog) => { dispatch({type: 'HIDE_BANUSER_DIALOG', showDialog}); }; }; - -export const banUser = (status, userId, commentId) => { - return dispatch => { - dispatch({type: 'USER_BAN', status, userId, commentId}); - dispatch({type: 'COMMENTS_MODERATION_QUEUE_FETCH'}); - }; -};