diff --git a/app/components/layout/admin_header_component.html.erb b/app/components/layout/admin_header_component.html.erb
index 903cc4541..f843abdf4 100644
--- a/app/components/layout/admin_header_component.html.erb
+++ b/app/components/layout/admin_header_component.html.erb
@@ -17,16 +17,9 @@
<% if show_account_menu? %>
-
-
-
-
-
+ <% end %>
<% end %>
diff --git a/app/components/layout/responsive_menu_component.html.erb b/app/components/layout/responsive_menu_component.html.erb
new file mode 100644
index 000000000..3a0e6feab
--- /dev/null
+++ b/app/components/layout/responsive_menu_component.html.erb
@@ -0,0 +1,10 @@
+
+
+
+
+
diff --git a/app/components/layout/responsive_menu_component.rb b/app/components/layout/responsive_menu_component.rb
new file mode 100644
index 000000000..baa98c998
--- /dev/null
+++ b/app/components/layout/responsive_menu_component.rb
@@ -0,0 +1,2 @@
+class Layout::ResponsiveMenuComponent < ApplicationComponent
+end
diff --git a/app/views/layouts/_header.html.erb b/app/views/layouts/_header.html.erb
index 24c200df7..bdbbf3dde 100644
--- a/app/views/layouts/_header.html.erb
+++ b/app/views/layouts/_header.html.erb
@@ -17,14 +17,7 @@
<% end %>
-
-
-
-
-
-
+ <% end %>
diff --git a/spec/support/common_actions/users.rb b/spec/support/common_actions/users.rb
index 624b3854f..01caf46cf 100644
--- a/spec/support/common_actions/users.rb
+++ b/spec/support/common_actions/users.rb
@@ -75,11 +75,11 @@ module Users
end
def expect_to_be_signed_in
- expect(find("#responsive-menu")).to have_content "My account"
+ expect(find("#responsive_menu")).to have_content "My account"
end
def expect_not_to_be_signed_in
- expect(find("#responsive-menu")).not_to have_content "My account"
+ expect(find("#responsive_menu")).not_to have_content "My account"
end
def do_login_for(user, management:)