From 19bd12e6142c1aeaaa2c8655ff23e0b27a93e6be Mon Sep 17 00:00:00 2001 From: aharwood9 <45667737+aharwood9@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:54:19 +0100 Subject: [PATCH] docs: add missing comma in RN setup (#1077) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In case other people are lazy and copy from the docs and get confused about why their build fails 🤦 --- .../reactnative/06-advanced/04-push-notifications/02-setup.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-sdk/docusaurus/docs/reactnative/06-advanced/04-push-notifications/02-setup.mdx b/packages/react-native-sdk/docusaurus/docs/reactnative/06-advanced/04-push-notifications/02-setup.mdx index d12355deab..357ee58e5f 100644 --- a/packages/react-native-sdk/docusaurus/docs/reactnative/06-advanced/04-push-notifications/02-setup.mdx +++ b/packages/react-native-sdk/docusaurus/docs/reactnative/06-advanced/04-push-notifications/02-setup.mdx @@ -118,7 +118,7 @@ We need to configure the Firebase library, set up the callkeep library and regis // add your app name here // highlight-start [RNCallKeep setup:@{ - @"appName": @"My awesome app" + @"appName": @"My awesome app", @"supportsVideo": @YES, // pass @YES here if you want the call to be shown in calls history in the built-in dialer app @"includesCallsInRecents": @NO,