From 0e76bdcd33254f8b7aa08da81cf7db3d0c362980 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Tue, 20 Nov 2018 15:27:08 -0500 Subject: [PATCH] Fix typo (#1165) --- app/views/notifications/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notifications/index.html.erb b/app/views/notifications/index.html.erb index af1806c1d..f60b38e00 100644 --- a/app/views/notifications/index.html.erb +++ b/app/views/notifications/index.html.erb @@ -33,7 +33,7 @@ <% if user_signed_in? %> <% notification_count = 0 %> <% @notifications.each do |notification| %> - <% next if (notification.notified_at < 24.hours.ago && notificatin.aggregated?) %> + <% next if (notification.notified_at < 24.hours.ago && notification.aggregated?) %> <% notification_count = notification_count + 1 %> <% break if notification_count > 45 %>
">