DESTROY_MEMBERSHIP(state, id) {
      const index = state.memberships.findIndex(v => v.id === id);
      state.memberships.splice(index, 1);
    },