@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.
- package/README.md +0 -1
- package/lib/commonjs/components/HMSBaseButton.js.map +1 -1
- package/lib/commonjs/components/HMSSendMessageInput.js +1 -1
- package/lib/commonjs/components/HMSSendMessageInput.js.map +1 -1
- package/lib/commonjs/components/HMSTextInput.js +1 -1
- package/lib/commonjs/components/HMSTextInput.js.map +1 -1
- package/lib/commonjs/components/PollQuestion.js +3 -3
- package/lib/commonjs/components/PollQuestion.js.map +1 -1
- package/lib/commonjs/hooks-util.js +1 -1
- package/lib/commonjs/hooks-util.js.map +1 -1
- package/lib/module/components/HMSBaseButton.js.map +1 -1
- package/lib/module/components/HMSSendMessageInput.js +1 -1
- package/lib/module/components/HMSSendMessageInput.js.map +1 -1
- package/lib/module/components/HMSTextInput.js +1 -1
- package/lib/module/components/HMSTextInput.js.map +1 -1
- package/lib/module/components/PollQuestion.js +3 -3
- package/lib/module/components/PollQuestion.js.map +1 -1
- package/lib/module/hooks-util.js +1 -1
- package/lib/module/hooks-util.js.map +1 -1
- package/package.json +8 -8
- package/src/components/HMSBaseButton.tsx +1 -1
- package/src/components/HMSSendMessageInput.tsx +1 -1
- package/src/components/HMSTextInput.tsx +1 -1
- package/src/components/PollQuestion.tsx +3 -3
- package/src/components/TilesContainer.tsx +1 -1
- package/src/hooks-util.ts +1 -1
|
@@ -152,7 +152,7 @@ function computeTileWidthAndHeight(
|
|
|
152
152
|
): {
|
|
153
153
|
width?: ViewStyle['width'];
|
|
154
154
|
height?: ViewStyle['height'];
|
|
155
|
-
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:
|
|
1939
|
+
captureNetworkQualityInPreview: false,
|
|
1940
1940
|
endpoint: storeState.user.endPoints?.init,
|
|
1941
1941
|
});
|
|
1942
1942
|
|