@100mslive/react-native-room-kit 1.2.2 → 1.2.3

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.
@@ -152,7 +152,7 @@ function computeTileWidthAndHeight(
152
152
  ): {
153
153
  width?: ViewStyle['width'];
154
154
  height?: ViewStyle['height'];
155
- aspectRatio?: ViewStyle['aspectRatio'];
155
+ aspectRatio?: number | undefined;
156
156
  } {
157
157
  const { type, isLandscapeOrientation } = config || {
158
158
  type: 'default',
package/src/hooks-util.ts CHANGED
@@ -1936,7 +1936,7 @@ export const useHMSConfig = () => {
1936
1936
  hmsConfig = new HMSConfig({
1937
1937
  authToken: token,
1938
1938
  username: storeState.user.userName,
1939
- captureNetworkQualityInPreview: true,
1939
+ captureNetworkQualityInPreview: false,
1940
1940
  endpoint: storeState.user.endPoints?.init,
1941
1941
  });
1942
1942