@@ -2,7 +2,7 @@ import { useDispatch, useSelector } from "react-redux";
22import { GuxButton , GuxRadialLoading , GuxTable } from "genesys-spark-components-react" ;
33import useSdk from "../../hooks/useSdk.ts" ;
44import {
5- IActiveVideoConversationsState , setCurrentlyDisplayedConversation ,
5+ IActiveVideoConversationState , setCurrentlyDisplayedConversation ,
66 toggleAudioMute ,
77 toggleVideoMute , updateConversationMediaStreams
88} from "../../features/videoConversationsSlice.ts" ;
@@ -13,7 +13,7 @@ import { VideoMediaSession } from "genesys-cloud-webrtc-sdk";
1313import { AppDispatch , RootState } from "../../types/store.ts" ;
1414
1515export default function ActiveVideoConversationsTable ( ) {
16- const videoConversations : IActiveVideoConversationsState [ ] = useSelector (
16+ const videoConversations : IActiveVideoConversationState [ ] = useSelector (
1717 ( state : RootState ) => state . videoConversations . activeVideoConversations
1818 ) ;
1919 const dispatch = useDispatch < AppDispatch > ( ) ;
@@ -83,7 +83,7 @@ export default function ActiveVideoConversationsTable() {
8383 session . stopScreenShare && session . stopScreenShare ( ) ;
8484 }
8585
86- const selectConvButton = ( convo : IActiveVideoConversationsState ) => {
86+ const selectConvButton = ( convo : IActiveVideoConversationState ) => {
8787 return (
8888 < GuxButton onClick = { ( ) => handleConversationSwitch ( convo . conversationId ) }
8989 disabled = { currentlyDisplayedConversationId === convo . conversationId } >
@@ -149,7 +149,7 @@ export default function ActiveVideoConversationsTable() {
149149 </ tr >
150150 </ thead >
151151 < tbody >
152- { videoConversations . map ( ( convo : IActiveVideoConversationsState , index : number ) => {
152+ { videoConversations . map ( ( convo : IActiveVideoConversationState , index : number ) => {
153153 const session = getSession ( convo . conversationId )
154154 return (
155155 < tr key = { `${ convo . conversationId } ${ session . id } ` } >
0 commit comments