const removeFeature = (photo) => {
    console.debug(`removing ${photo.id}`);
    dispatch({ type: "DELETE_FEATURE", payload: { photo } });
  };