Skip to content

Commit b937d89

Browse files
Fix some phrasings and typos
1 parent cfcacf6 commit b937d89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

fern/docs/pages/plug-sdk/react-native.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ DevRev.createSupportConversation()
9090

9191
### In-app link handling
9292

93-
In certain cases, the links opened from the support chat are opened in the app instead of a browser. You can control whether the chat modal should be dismissed after the link is opened by calling the following method:
93+
In certain cases, tapping links in the support chat will open them in the app instead of a browser. You can control whether the chat modal screen should be dismissed after the link is opened by calling the following method:
9494

9595
```typescript
9696
DevRev.setShouldDismissModalsOnOpenLink(value: boolean)
@@ -157,10 +157,10 @@ The session recording feature includes the following methods to control the reco
157157
| Method | Action |
158158
|--------------------------------------------------------------------|-----------------------------------------------------------|
159159
|`DevRev.startRecording()` | Start the session recording. |
160-
|`DevRev.stopRecording()` | Stop the session recording and uploads it to the portal. |
160+
|`DevRev.stopRecording()` | Stop the session recording and upload it to the portal. |
161161
|`DevRev.pauseRecording()` | Pause the ongoing session recording. |
162162
|`DevRev.resumeRecording()` | Resume a paused session recording. |
163-
|`DevRev.processAllOnDemandSessions()` | Stop the ongoing session recording and uploads all offline sessions on demand, including the current one.|
163+
|`DevRev.processAllOnDemandSessions()` | Stop the ongoing session recording and upload all offline sessions on demand, including the current one.|
164164

165165
### Session properties
166166

@@ -231,7 +231,7 @@ To receive push notifications, you need to configure your DevRev organization by
231231
### Register for push notifications
232232

233233
<Callout intent="note">
234-
Push notifications require that the SDK has been configured and the user has been identified, to ensure delivery to the correct user.
234+
To ensure delivery to the correct user, push notifications require that the SDK has been configured and the user has been identified.
235235
</Callout>
236236

237237
The DevRev SDK offers a method to register your device for receiving push notifications. You can register for push notifications using the following method:
@@ -240,7 +240,7 @@ The DevRev SDK offers a method to register your device for receiving push notifi
240240
DevRevSDK.registerDeviceToken(deviceToken: string, deviceID: string)
241241
```
242242

243-
On Android devices, the `deviceToken` should be the Firebase Cloud Messaging (FCM) token value, while on iOS devices, it should be the Apple Push Notification Service (APNs) token.
243+
On Android devices, the `deviceToken` must be the Firebase Cloud Messaging (FCM) token value. On iOS devices, it must be the Apple Push Notification Service (APNs) token.
244244

245245
### Unregister from push notifications
246246

0 commit comments

Comments
 (0)