Skip to content

Commit

Permalink
fix: correct liquid page name for Products when viewing category
Browse files Browse the repository at this point in the history
  • Loading branch information
tmchow committed Jan 29, 2025
1 parent a7eba0c commit d0507e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dugway/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def self.render_artist_category_response(object, type)
end

def self.set_page_name_and_render_page(object, type)
page['name'] = object['name']
page['name'] = object['name'] if type == :artists
render_page(type => object)
end

Expand Down

0 comments on commit d0507e9

Please sign in to comment.