From a14314404323bbdbe3233b81a009c9179c9bb526 Mon Sep 17 00:00:00 2001 From: Vishal Narkhede Date: Thu, 31 Aug 2023 18:00:42 +0200 Subject: [PATCH] docs: fix room type in tutorial (#1038) --- .../docs/reactnative/02-tutorials/01-video-calling.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-sdk/docusaurus/docs/reactnative/02-tutorials/01-video-calling.mdx b/packages/react-native-sdk/docusaurus/docs/reactnative/02-tutorials/01-video-calling.mdx index eb739eda34..9949f5efa1 100644 --- a/packages/react-native-sdk/docusaurus/docs/reactnative/02-tutorials/01-video-calling.mdx +++ b/packages/react-native-sdk/docusaurus/docs/reactnative/02-tutorials/01-video-calling.mdx @@ -250,7 +250,7 @@ The following example illustrates how to create a call instance of the `default` Detailed information about various call types can be found in the [Call Types](../../core/configuring-call-types) guide. ```tsx -const call = client.call('audio_room', callId); +const call = client.call('default', callId); ``` Subsequently, the `call.join` method can be utilized to enter the call identified by the given unique case-sensitive `callId`.