Modern Front-End Development for Rails: B7 pg 166 replace the entire span tag that had the count of remaining tickets

The code to replace isn’t actually in a span:

      <div class="col-span-1 text-xl">
        <% if concert.sold_out? %>
          Sold out
        <% else %>
          <%= pluralize(concert.unsold_ticket_count, "Tickets") %>
          Remaining
        <% end %>

Thanks, great catch, will fix.