diff --git a/app/views/layouts/_cart_text.html.erb b/app/views/layouts/_cart_text.html.erb index f525427..6e6e1d6 100644 --- a/app/views/layouts/_cart_text.html.erb +++ b/app/views/layouts/_cart_text.html.erb @@ -1,7 +1,5 @@ -
- <% if current_order.order_items.size > 1 %> - <%= link_to "#{current_order.order_items.size} Items in Cart ( #{number_to_currency current_order.subtotal} )", cart_path %> - <% else %> - <%= link_to "#{current_order.order_items.size} Item in Cart ( #{number_to_currency current_order.subtotal} )", cart_path %> - <% end %> -
+<% if current_order.order_items.size > 1 %> + <%= link_to "#{current_order.order_items.size} Items in Cart ( #{number_to_currency current_order.subtotal} )", cart_path %> +<% else %> + <%= link_to "#{current_order.order_items.size} Item in Cart ( #{number_to_currency current_order.subtotal} )", cart_path %> +<% end %>