Add additional checks/logs to ringtones

This commit is contained in:
Jamie Kyle 2024-01-04 14:16:33 -08:00 committed by GitHub
parent 93e61a1a3a
commit 422ebf1bc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 102 additions and 32 deletions

View file

@ -73,6 +73,7 @@ const createProps = (storyProps: Partial<PropsType> = {}): PropsType => ({
getPresentingSources: action('get-presenting-sources'),
hangUpActiveCall: action('hang-up-active-call'),
i18n,
incomingCall: null,
isGroupCallRaiseHandEnabled: true,
isGroupCallReactionsEnabled: true,
keyChangeOk: action('key-change-ok'),
@ -189,6 +190,8 @@ export function RingingGroupCall(): JSX.Element {
{...createProps({
incomingCall: {
callMode: CallMode.Group as const,
connectionState: GroupCallConnectionState.NotConnected,
joinState: GroupCallJoinState.NotJoined,
conversation: {
...getConversation(),
type: 'group',
@ -201,6 +204,7 @@ export function RingingGroupCall(): JSX.Element {
{ firstName: 'Summer', title: 'Summer Smith' },
],
ringer: { firstName: 'Rick', title: 'Rick Sanchez' },
remoteParticipants: [],
},
})}
/>