@stream-io/video-react-sdk 1.18.0 → 1.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.es.js CHANGED
@@ -1998,7 +1998,7 @@ const NoiseCancellationProvider = (props) => {
1998
1998
  noiseCancellation.isEnabled().then((e) => setIsEnabled(e));
1999
1999
  const unsubscribe = noiseCancellation.on('change', (v) => setIsEnabled(v));
2000
2000
  const init = (deinit.current || Promise.resolve())
2001
- .then(() => noiseCancellation.init())
2001
+ .then(() => noiseCancellation.init({ tracer: call.tracer }))
2002
2002
  .then(() => call.microphone.enableNoiseCancellation(noiseCancellation))
2003
2003
  .catch((e) => console.error(`Can't initialize noise cancellation`, e));
2004
2004
  return () => {
@@ -2931,7 +2931,7 @@ const checkCanJoinEarly = (startsAt, joinAheadTimeSeconds) => {
2931
2931
  return Date.now() >= +startsAt - (joinAheadTimeSeconds ?? 0) * 1000;
2932
2932
  };
2933
2933
 
2934
- const [major, minor, patch] = ("1.18.0").split('.');
2934
+ const [major, minor, patch] = ("1.18.1").split('.');
2935
2935
  setSdkInfo({
2936
2936
  type: SfuModels.SdkType.REACT,
2937
2937
  major,