diff --git a/app/views/bubbles/_pop_toggle.html.erb b/app/views/bubbles/_pop_toggle.html.erb
index 690d04007..f5d41e1bf 100644
--- a/app/views/bubbles/_pop_toggle.html.erb
+++ b/app/views/bubbles/_pop_toggle.html.erb
@@ -1,4 +1,4 @@
-
+
<% if bubble.popped? %>
<% event = bubble.events.where(action: "popped").last %>
Popped by <%= "#{ event.creator.name } on #{ event.created_at.to_date.strftime('%B %-d') }" if event %>.
@@ -13,7 +13,7 @@
<% end %>
<% time_until_pop = (event&.created_at || bubble.created_at) + 30.days %>
- (Pops automatically <%= Time.current >= time_until_pop ? "today" : "in #{distance_of_time_in_words(Time.current, time_until_pop)}" %>.)
+ Auto-pops <%= Time.current >= time_until_pop ? "today" : "in #{distance_of_time_in_words(Time.current, time_until_pop)}" %>.
<% end %>