Skip to content

Commit 0ec9257

Browse files
committed
Merge branch 'develop' into steve/hebrew-locale
2 parents 0571000 + 19d0265 commit 0ec9257

File tree

35 files changed

+139
-539
lines changed

35 files changed

+139
-539
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Besides, our team maintains a dedicated repository for fully-fledged sample appl
6161

6262
2. Minor releases may come with some breaking changes, so always check the release notes before upgrading the minor version.
6363

64-
You can see detailed documentation about the components at <https://getstream.github.io/stream-chat-react-native>
64+
You can see detailed documentation about the components at <https://getstream.io/chat/docs/sdk/reactnative/>
6565

6666
## 👏 Contributing
6767

docusaurus/docs/reactnative/common-content/contexts/channel-context/members.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Record<
2525
user?: UserResponse<UserType>;
2626
user_id?: string;
2727
}
28-
>
28+
>;
2929
```
3030

3131
| Type |
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Removes attached file in message, which is being composed in `MessageInput` component. By default, this function is attached to onPress handler for close button in [FileUploadPreview](../../../core-components/channel.mdx#fileuploadpreview).
2-
It takes index of file (to be removed) in [`fileUploads`](../../../contexts/message_input_context.mdx#fileuploads) array as parameter.
2+
It takes a string ID of the file to be removed in the [`fileUploads`](../../../contexts/message_input_context.mdx#fileuploads) array as parameter.
33

4-
| Type |
5-
| ----------------- |
6-
| `(index) => void` |
4+
| Type |
5+
| ---------------------- |
6+
| `(id: string) => void` |
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Removes attached image in message, which is being composed in `MessageInput` component. By default, this function is attached to onPress handler for close button in [ImageUploadPreview](../../../core-components/channel.mdx#imageuploadpreview).
2-
It takes index of file (to be removed) in [imageUploads](../../../contexts/message_input_context.mdx#imageuploads) array as parameter.
1+
Removes an attached image in a message being composed in the `MessageInput` component. By default, this function is attached to onPress handler for close button in [ImageUploadPreview](../../../core-components/channel.mdx#imageuploadpreview).
2+
It takes a string ID of the image to be removed in the [imageUploads](../../../contexts/message_input_context.mdx#imageuploads) array as parameter.
33

4-
| Type |
5-
| ----------------- |
6-
| `(index) => void` |
4+
| Type |
5+
| ---------------------- |
6+
| `(id: string) => void` |

docusaurus/docs/reactnative/contexts/attachment_picker_context.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Array<{
9797
size: string;
9898
type: string;
9999
uri: string;
100-
}>
100+
}>;
101101
```
102102

103103
### selectedImages
@@ -111,7 +111,7 @@ Array<{
111111
uri: string;
112112
width: number;
113113
id?: string;
114-
}>
114+
}>;
115115
```
116116

117117
| Type |

docusaurus/docs/reactnative/contexts/channel_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Record<
184184
string, // userId
185185
{
186186
last_read: Date;
187-
user: UserResponse<UserType>
187+
user: UserResponse<UserType>;
188188
}
189189
>;
190190
```

docusaurus/docs/reactnative/guides/push_notifications_v2.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ To update the payload for Android to have notification payload also, you can add
394394
const client = StreamChat.getInstance(‘api_key’, ‘api_secret’);
395395
const notification_template = `{
396396
"title": "New message from {{ sender.name }}",
397-
"body": "{{ truncate message.text 2000 }}"
397+
"body": "{{ truncate message.text 2000 }}",
398398
"click_action": "OPEN_ACTIVITY_1",
399399
"sound": "default"
400400
}`;

docusaurus/reactnative_versioned_docs/version-3.x.x/common-content/contexts/channel-context/members.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Record<
2525
user?: UserResponse<UserType>;
2626
user_id?: string;
2727
}
28-
>
28+
>;
2929
```
3030

3131
| Type |

docusaurus/reactnative_versioned_docs/version-3.x.x/contexts/attachment_picker_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Array<{
9797
uri: string;
9898
width: number;
9999
id?: string;
100-
}>
100+
}>;
101101
```
102102

103103
| Type |

docusaurus/reactnative_versioned_docs/version-3.x.x/contexts/channel_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Record<
186186
string, // userId
187187
{
188188
last_read: Date;
189-
user: UserResponse<UserType>
189+
user: UserResponse<UserType>;
190190
}
191191
>;
192192
```

0 commit comments

Comments
 (0)