aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Notifications.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Notifications.js')
-rw-r--r--frontend/src/components/Notifications.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/Notifications.js b/frontend/src/components/Notifications.js
index a81eba1..0b47b43 100644
--- a/frontend/src/components/Notifications.js
+++ b/frontend/src/components/Notifications.js
@@ -107,7 +107,7 @@ class Notifications extends Component {
<div className="notifications">
<div className="notifications-list">
{
- this.state.closedNotifications.concat(this.state.notifications).map(n => {
+ this.state.closedNotifications.concat(this.state.notifications).map((n) => {
const notificationClassnames = {
"notification": true,
"notification-closed": n.closed,