From 3ebfe6c509ebb058b2ae891dffc6d3ae5cb151ee Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 31 Mar 2025 14:45:00 -0500 Subject: [PATCH] Remove limit --- app/views/bubbles/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/bubbles/index.html.erb b/app/views/bubbles/index.html.erb index 83f30dcd8..8330554e3 100644 --- a/app/views/bubbles/index.html.erb +++ b/app/views/bubbles/index.html.erb @@ -67,7 +67,7 @@
<% if (popped_bubbles = Filter.from_params(@filter.as_params.merge(indexed_by: "popped")).tap { |f| f.creator = Current.user }.bubbles).any? %> - <%= render partial: "bubbles/card", collection: popped_bubbles.limit(@display_count), as: :bubble, cached: true %> + <%= render partial: "bubbles/card", collection: popped_bubbles, as: :bubble, cached: true %> <% else %>

Nothing here.

<% end %>