Skip to content

Commit

Permalink
fix(react-native): initial media state for ringing call in DF app (#978)
Browse files Browse the repository at this point in the history
  • Loading branch information
khushal87 authored Aug 23, 2023
1 parent 5f218cb commit f32aec5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion sample-apps/react-native/dogfood/src/navigators/Call.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ const Calls = () => {
}

return (
<StreamCall call={firstCall}>
<StreamCall
call={firstCall}
mediaDeviceInitialState={{
initialAudioEnabled: false,
initialVideoEnabled: false,
}}
>
<SafeAreaView style={[styles.container, { top }]}>
<RingingCallContent />
</SafeAreaView>
Expand Down

0 comments on commit f32aec5

Please sign in to comment.