diff --git a/app/views/schools/show.html.erb b/app/views/schools/show.html.erb
index fd31a18..0028dec 100644
--- a/app/views/schools/show.html.erb
+++ b/app/views/schools/show.html.erb
@@ -36,7 +36,6 @@
<% end %>
-<% cache ["schools", @school] do %>
| <%= wrestler.nextMatchBoutNumber %> <%= wrestler.nextMatchMatName %> | -<% end %>
<%= link_to 'Show', wrestler , :class=>"btn btn-default btn-sm" %>
<% if can? :manage, wrestler.school %>
diff --git a/app/views/wrestlers/show.html.erb b/app/views/wrestlers/show.html.erb
index 24794ba..c74b305 100644
--- a/app/views/wrestlers/show.html.erb
+++ b/app/views/wrestlers/show.html.erb
@@ -5,7 +5,6 @@
<% if can? :manage, @school %>
| <%= link_to "Edit #{@wrestler.name}", edit_wrestler_path(@wrestler), :class=>"btn btn-primary" %>
<% end %>
-<% cache ["wrestlers", @wrestler] do %>
@@ -45,4 +44,3 @@ <% @wrestler.deductedPoints.each do |w| %> Deducted points: <%= w.points %>
<% end %>
-<% end %>
\ No newline at end of file
|