@tellescope/video-chat 1.3.30 → 1.3.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tellescope/video-chat",
3
- "version": "1.3.30",
3
+ "version": "1.3.32",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -34,13 +34,13 @@
34
34
  "@fontsource/roboto": "^4.5.1",
35
35
  "@mui/icons-material": "^5.0.1",
36
36
  "@mui/material": "^5.0.2",
37
- "@tellescope/constants": "^1.3.24",
38
- "@tellescope/react-components": "^1.3.30",
39
- "@tellescope/sdk": "^1.3.25",
40
- "@tellescope/types-client": "^1.3.24",
41
- "@tellescope/types-models": "^1.3.24",
37
+ "@tellescope/constants": "^1.3.32",
38
+ "@tellescope/react-components": "^1.3.32",
39
+ "@tellescope/sdk": "^1.3.32",
40
+ "@tellescope/types-client": "^1.3.32",
41
+ "@tellescope/types-models": "^1.3.32",
42
42
  "@tellescope/types-utilities": "^1.3.20",
43
- "@tellescope/utilities": "^1.3.25",
43
+ "@tellescope/utilities": "^1.3.32",
44
44
  "@typescript-eslint/eslint-plugin": "^4.33.0",
45
45
  "@typescript-eslint/parser": "^4.33.0",
46
46
  "amazon-chime-sdk-component-library-react": "^2.15.0",
@@ -55,7 +55,7 @@
55
55
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
56
56
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
57
57
  },
58
- "gitHead": "99f91ad546b30d6debc5ea5fa3360c959e094246",
58
+ "gitHead": "30e2d9bb967db68d0d117dfb85ba1383bb82616a",
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  }
@@ -23,7 +23,6 @@ import {
23
23
  Flex,
24
24
  Typography,
25
25
  LoadingButton,
26
- useSession,
27
26
  useResolvedSession,
28
27
  Button,
29
28
  } from "@tellescope/react-components"
@@ -122,7 +121,7 @@ export type WaitingRoomProps = {
122
121
  onGoBack?: () => void,
123
122
  }
124
123
  export const WaitingRoom = ({ calendarEvent, onGoBack } : WaitingRoomProps) => {
125
- const session = useSession()
124
+ const session = useResolvedSession()
126
125
  const [, { findById: findEvent }] = useCalendarEvents()
127
126
  const [, { findById: findMeeting }] = useMeetings()
128
127
  const { startAndJoinMeeting } = useStartAndJoinMeetingForCalendarEvent(calendarEvent.id)