diff --git a/app/views/news_updates/_listing.html.erb b/app/views/news_updates/_listing.html.erb
index 8a3b3955f..1217d502d 100644
--- a/app/views/news_updates/_listing.html.erb
+++ b/app/views/news_updates/_listing.html.erb
@@ -1,13 +1,11 @@
-<% cache("news-updates", :expires_in => 1.hour) do %>
- <% if NewsUpdate.recent.any? %>
-
-
- <% NewsUpdate.recent.each do |news_update| %>
- - <%= news_update.created_at.strftime("%b %d") %>: <%= news_update.message.html_safe %>
- <% end %>
-
+<% if NewsUpdate.recent.present? %>
+
+
+ <% NewsUpdate.recent.each do |news_update| %>
+ - <%= news_update.created_at.strftime("%b %d") %>: <%= news_update.message.html_safe %>
+ <% end %>
+
-
close
-
- <% end %>
+
close
+
<% end %>