unsubscribeFromRosterUpdate()

in web-ui/src/components/chime/ChimeSdkWrapper.js [463:468]


  unsubscribeFromRosterUpdate(callback) {
    const index = this.rosterUpdateCallbacks.indexOf(callback);
    if (index !== -1) {
      this.rosterUpdateCallbacks.splice(index, 1);
    }
  }