@stream-io/video-react-sdk 1.10.2 → 1.10.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.10.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.10.3...@stream-io/video-react-sdk-1.10.4) (2025-01-22)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **LivestreamPlayer:** don't render any component until `call` is ready ([#1653](https://github.com/GetStream/stream-video-js/issues/1653)) ([63afc30](https://github.com/GetStream/stream-video-js/commit/63afc3090a5ceb3d656f0111bc348d79b895ab5f))
11
+
12
+ ## [1.10.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.10.2...@stream-io/video-react-sdk-1.10.3) (2025-01-21)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `@stream-io/video-client` updated to version `1.15.3`
17
+ * `@stream-io/video-react-bindings` updated to version `1.4.3`
5
18
  ## [1.10.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.10.1...@stream-io/video-react-sdk-1.10.2) (2025-01-20)
6
19
 
7
20
  ### Dependency Updates
package/dist/index.cjs.js CHANGED
@@ -2571,10 +2571,12 @@ const LivestreamPlayer = (props) => {
2571
2571
  setCall(undefined);
2572
2572
  };
2573
2573
  }, [callId, callType, client]);
2574
+ if (!call)
2575
+ return null;
2574
2576
  return (jsxRuntime.jsx(StreamCall, { call: call, children: jsxRuntime.jsx(LivestreamLayout, { ...layoutProps }) }));
2575
2577
  };
2576
2578
 
2577
- const [major, minor, patch] = ("1.10.2").split('.');
2579
+ const [major, minor, patch] = ("1.10.4").split('.');
2578
2580
  videoClient.setSdkInfo({
2579
2581
  type: videoClient.SfuModels.SdkType.REACT,
2580
2582
  major,