diff --git a/react/src/components/dashboard/notifications/notifications.render.js b/react/src/components/dashboard/notifications/notifications.render.js index 0a386d8..93c57b6 100644 --- a/react/src/components/dashboard/notifications/notifications.render.js +++ b/react/src/components/dashboard/notifications/notifications.render.js @@ -88,33 +88,29 @@ export const NotificationsModalRender = function() { }; export const NotificationsRender = function() { - if (this.state.debug) { - return ( -
-
- - { this.state.calls.success } - - - { this.state.calls.error } - - - { this.state.calls.pending } - -
-
-
-
-
-
-
+ return ( +
+
+ + { this.state.calls.success } + + + { this.state.calls.error } + + + { this.state.calls.pending } + +
+
+
+
+
+
- { this.renderNotificationsModal() }
- ); - } else { - return null; - } + { this.renderNotificationsModal() } +
+ ); }; \ No newline at end of file