diff --git a/react/features/notifications/components/NotificationsContainer.native.js b/react/features/notifications/components/NotificationsContainer.native.js
index a8326d11e..702cd2486 100644
--- a/react/features/notifications/components/NotificationsContainer.native.js
+++ b/react/features/notifications/components/NotificationsContainer.native.js
@@ -37,7 +37,11 @@ class NotificationsContainer
render() {
const { _notifications } = this.props;
- if (!_notifications || !_notifications.length) {
+ // Currently the native container displays only the topmost notification
+ const theNotification
+ = _notifications && _notifications.length && _notifications[0];
+
+ if (!theNotification) {
return null;
}
@@ -48,15 +52,10 @@ class NotificationsContainer
styles.notificationContainer,
this.props.style
] } >
- {
- _notifications.map(
- ({ props, uid }) => (
- ))
- }
+
);
}