export function clearAlert (alert) {
  return function (dispatch) {
    const nextAlert = { ...alert, state: 'Cleared' };
    // be optimistic
    dispatch(loadActivityItemSuccess(nextAlert));