Agile Web Development with Rails 8: live product refresh not working in chapter 6, page 83

The following code on page 83 does not work for me (i.e. the product listing does not refresh without a page reload).

rails80/depot_a/app/views/products/index.html.erb

<%= turbo_stream_from “store/products” %>
<%= turbo_refreshes_with method: :morph, scroll: :preserve %>

Removing ‘store/’ from the first line fixes it:
<%= turbo_stream_from “products” %>