unsubscribeFromDevicesUpdated()

in web-ui/src/components/chime/ChimeSdkWrapper.js [439:444]


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