diff --git a/app/assets/stylesheets/darkswarm/cart-dropdown.css.scss b/app/assets/stylesheets/darkswarm/cart-dropdown.css.scss index ca3dd6a1a288..8d5369b23ff7 100644 --- a/app/assets/stylesheets/darkswarm/cart-dropdown.css.scss +++ b/app/assets/stylesheets/darkswarm/cart-dropdown.css.scss @@ -55,7 +55,6 @@ } .go-shopping { - display: none; padding: 0 1.5em; @include breakpoint(mobile) { diff --git a/app/helpers/shop_helper.rb b/app/helpers/shop_helper.rb index 32bb144d5fa6..8da650c4ef3a 100644 --- a/app/helpers/shop_helper.rb +++ b/app/helpers/shop_helper.rb @@ -52,7 +52,7 @@ def no_open_order_cycles? end def show_shopping_cta? - return false if current_page?(main_app.shops_path) + return false if current_page?(main_app.shops_path) && current_distributor.blank? return false if current_distributor.present? && current_page?(main_app.enterprise_shop_path(current_distributor))