diff --git a/templates/search/blocks/search_results.html b/templates/search/blocks/search_results.html
index 1464afe07..3724b6e91 100644
--- a/templates/search/blocks/search_results.html
+++ b/templates/search/blocks/search_results.html
@@ -54,7 +54,10 @@
Results
{% for record in page %}
- {% include './search_results__list-card.html' %}
+ {% comment %} TODO: DOR-82 - Remove this if statement to show all records after user testing {% endcomment %}
+ {% if record.thumbnail %}
+ {% include './search_results__list-card.html' %}
+ {% endif %}
{% endfor %}
{% endif %}