Programming Phoenix LiveView B3.0: P210. One closing parenthesis too many

defp assign_products_with_average_ratings(socket) do
socket |> assign( :products_with_average_ratings, Catalog.products_with_average_ratings())
) end

I believe the ) before end is superfluous.

Yep! Thanks for pointing that out :slight_smile: