diff --git a/app/views/bubbles/pins/show.html.erb b/app/views/bubbles/pins/show.html.erb
index 9039cc92f..cbd2b75a0 100644
--- a/app/views/bubbles/pins/show.html.erb
+++ b/app/views/bubbles/pins/show.html.erb
@@ -1,13 +1,13 @@
<%= turbo_frame_tag dom_id(@bubble, :pin) do %>
<% if @bubble.pinned_by? Current.user %>
- <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), method: :delete, class: "btn btn--reversed" do %>
- <%= icon_tag "pinned" %>
- Un-pin this card
- <% end %>
+ <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), method: :delete, class: "btn btn--reversed" do %>
+ <%= icon_tag "pinned" %>
+ Un-pin this card
+ <% end %>
<% else %>
- <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), class: "btn" do %>
- <%= icon_tag "unpinned" %>
- Pin this card
- <% end %>
+ <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), class: "btn" do %>
+ <%= icon_tag "unpinned" %>
+ Pin this card
+ <% end %>
<% end %>
<% end %>