diff --git a/bookwyrm/templates/snippets/shelve_button.html b/bookwyrm/templates/snippets/shelve_button.html
index 6630ed539..f69ab5257 100644
--- a/bookwyrm/templates/snippets/shelve_button.html
+++ b/bookwyrm/templates/snippets/shelve_button.html
@@ -4,11 +4,12 @@
{% with book.id|uuid as uuid %}
{% active_shelf book as active_shelf %}
+ {% if switch_mode and active_shelf.book != book %}
- {% if switch_mode and active_shelf.book != book %}
{% include 'snippets/switch_edition_button.html' with edition=book size='is-small' %}
- {% else %}
-
+
+ {% else %}
+
{% if active_shelf.shelf.identifier == 'read' %}
{% include 'snippets/shelve_button_dropdown.html' with class="is-small" button_uuid=uuid%}
{% endif %}
-
{% include 'snippets/start_reading_modal.html' with book=active_shelf.book controls_text="start-reading" controls_uid=uuid %}