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