diff --git a/app/views/cards/display/_preview.html.erb b/app/views/cards/display/_preview.html.erb
index c874d8151..359c5a98a 100644
--- a/app/views/cards/display/_preview.html.erb
+++ b/app/views/cards/display/_preview.html.erb
@@ -29,10 +29,12 @@
<%= render "cards/display/common/background", card: card %>
- <% if card.considering? %>
- <%= render "cards/display/preview/bubble", card: card, style: "closing" %>
- <% elsif card.doing? %>
- <%= render "cards/display/preview/bubble", card: card, style: "considering" %>
+ <% if card.auto_closing? %>
+ <% if card.considering? %>
+ <%= render "cards/display/preview/bubble", card: card, style: "closing" %>
+ <% elsif card.doing? %>
+ <%= render "cards/display/preview/bubble", card: card, style: "considering" %>
+ <% end %>
<% end %>
<% end %>
<% end %>