diff --git a/bookwyrm/templates/search_results.html b/bookwyrm/templates/search_results.html index be1da8318..34328bbd8 100644 --- a/bookwyrm/templates/search_results.html +++ b/bookwyrm/templates/search_results.html @@ -22,7 +22,8 @@ {% endif %} - {% if book_results|slice:":1" and local_results.results and request.user.is_authenticated %} + {% if request.user.is_authenticated %} + {% if book_results|slice:":1" and local_results.results %}

Didn't find what you were looking for? @@ -61,6 +62,7 @@ {% include 'snippets/toggle/close_button.html' with text="Hide results from other catalogues" small=True controls_text="more-results" %} {% endif %}

+ {% endif %}