diff --git a/docusaurus/docs/reactnative/common-content/ui-components/channel/props/should_show_unread_underlay.mdx b/docusaurus/docs/reactnative/common-content/ui-components/channel/props/should_show_unread_underlay.mdx
new file mode 100644
index 000000000..139b8ea74
--- /dev/null
+++ b/docusaurus/docs/reactnative/common-content/ui-components/channel/props/should_show_unread_underlay.mdx
@@ -0,0 +1,5 @@
+Boolean to enable/disable the message underlay background when there are unread messages in the Message List.
+
+| Type | Default |
+| ---------------------- | ------- |
+| `boolean`\|`undefined` | `true` |
diff --git a/docusaurus/docs/reactnative/contexts/messages-context.mdx b/docusaurus/docs/reactnative/contexts/messages-context.mdx
index 455c1cc30..5ace299ae 100644
--- a/docusaurus/docs/reactnative/contexts/messages-context.mdx
+++ b/docusaurus/docs/reactnative/contexts/messages-context.mdx
@@ -66,6 +66,7 @@ import OverlayReactionList from '../common-content/ui-components/overlay-provide
import ReactionList from '../common-content/ui-components/channel/props/reaction-list.mdx';
import Reply from '../common-content/ui-components/channel/props/reply.mdx';
import ScrollToBottomButton from '../common-content/ui-components/channel/props/scroll-to-bottom-button.mdx';
+import ShouldShowUnreadUnderlay from '../common-content/ui-components/channel/props/should_show_unread_underlay.mdx';
import SelectReaction from '../common-content/ui-components/channel/props/select_reaction.mdx';
import SupportedReactions from '../common-content/ui-components/channel/props/supported_reactions.mdx';
import TypingIndicator from '../common-content/ui-components/channel/props/typing_indicator.mdx';
@@ -235,6 +236,10 @@ Enables quoted-reply state on given message.
| ------------------- |
| `(message) => void` |
+###
_forwarded from [Channel](../../core-components/channel#shouldshowunreadunderlay)_ props
shouldShowUnreadUnderlay {#shouldshowunreadunderlay}
+
+
+
### _forwarded from [Channel](../../core-components/channel#supportedreactions)_ props
supportedReactions {#supportedreactions}
diff --git a/docusaurus/docs/reactnative/core-components/channel-list.mdx b/docusaurus/docs/reactnative/core-components/channel-list.mdx
index b8af02ea1..9e99f1362 100644
--- a/docusaurus/docs/reactnative/core-components/channel-list.mdx
+++ b/docusaurus/docs/reactnative/core-components/channel-list.mdx
@@ -40,6 +40,10 @@ export const App = () =>
;
```
+:::note
+When receiving channel information from channel events, the filters are not respected; the reason for this is that channel filters can get very complex, and implementing that filtering logic that supports all of the custom filter would be very hard to do. Implementing this on the backend side isn't an option as it is inefficient and has to cater to different filters. So, to help you with it, you will have to override the `notification.message_new` event using the [`onNewMessageNotification`](./channel-list.mdx#onnewmessagenotification) and `message.new` event handlers using the [`onNewMessage`](./channel-list.mdx#onnewmessage) prop of the `ChannelList` component.
+:::
+
## Context Providers
`ChannelList` contains the provider for the `ChannelsContext`. This can be accessed using the corresponding hook.
diff --git a/docusaurus/docs/reactnative/core-components/channel.mdx b/docusaurus/docs/reactnative/core-components/channel.mdx
index 529e1a459..cc3c35334 100644
--- a/docusaurus/docs/reactnative/core-components/channel.mdx
+++ b/docusaurus/docs/reactnative/core-components/channel.mdx
@@ -134,6 +134,7 @@ import ScrollToBottomButton from '../common-content/ui-components/channel/props/
import SelectReaction from '../common-content/ui-components/channel/props/select_reaction.mdx';
import SendButton from '../common-content/ui-components/channel/props/send_button.mdx';
import SendMessageDisallowedIndicator from '../common-content/ui-components/channel/props/send_message_disallowed_indicator.mdx';
+import ShouldShowUnreadUnderlay from '../common-content/ui-components/channel/props/should_show_unread_underlay.mdx';
import ShowThreadMessageInChannelButton from '../common-content/ui-components/channel/props/show_thread_message_in_channel_button.mdx';
import StartAudioRecordingButton from '../common-content/ui-components/channel/props/start_audio_recording_button.mdx';
import StateUpdateThrottleInterval from '../common-content/ui-components/channel/props/state_update_throttle_interval.mdx';
@@ -702,6 +703,10 @@ Callback function to set the [ref](https://reactjs.org/docs/refs-and-the-dom.htm
| --------- | -------------------- |
| ref | ref of the TextInput |
+### `shouldShowUnreadUnderlay`
+
+
+
### stateUpdateThrottleInterval