diff --git a/src/pages/home.jsx b/src/pages/home.jsx
index af6ac038..9a2585e6 100644
--- a/src/pages/home.jsx
+++ b/src/pages/home.jsx
@@ -169,34 +169,36 @@ function NotificationsMenu({ anchorRef, state, onClose }) {
- {snapStates.notifications.length ? (
- <>
- {snapStates.notifications
- .slice(0, NOTIFICATIONS_DISPLAY_LIMIT)
- .map((notification) => (
-
- ))}
- >
- ) : uiState === 'loading' ? (
-
-
-
- ) : (
- uiState === 'error' && (
+
+ {snapStates.notifications.length ? (
+ <>
+ {snapStates.notifications
+ .slice(0, NOTIFICATIONS_DISPLAY_LIMIT)
+ .map((notification) => (
+
+ ))}
+ >
+ ) : uiState === 'loading' ? (
-
Unable to fetch notifications.
-
-
-
+
- )
- )}
+ ) : (
+ uiState === 'error' && (
+
+
Unable to fetch notifications.
+
+
+
+
+ )
+ )}
+