diff --git a/app/views/customers/index.html.erb b/app/views/customers/index.html.erb
index bbf866e..1b3a984 100644
--- a/app/views/customers/index.html.erb
+++ b/app/views/customers/index.html.erb
@@ -5,7 +5,7 @@
<%= submit_tag "Search" %>
<% end %>
-<% if @customers.present? or !@customers.nil? %>
+<% if @customers.present? %>
<% @customers.each do |c| %>
@@ -19,6 +19,10 @@
<% end %>
+
There are no customers containing the term(s) <%= params[:search] %>.
<% end %> @@ -26,6 +30,5 @@