diff --git a/app/views/application/_notice_navbar.html.erb b/app/views/application/_notice_navbar.html.erb
index 5b02298..7f01805 100644
--- a/app/views/application/_notice_navbar.html.erb
+++ b/app/views/application/_notice_navbar.html.erb
@@ -1,5 +1,5 @@
<% if defined?(current_user) && current_user %>
- <%= link_to({ controller: 'notice/my/notifications' }, class: 'navbar-item', id: 'notify_show') do %>
+ <%= link_to({ controller: 'notice/my/notifications' }, id: 'notice_show', class: 'navbar-item') do %>
<%= current_user.unread_count %>
<% end %>
diff --git a/app/views/me/_notice_navbar.html.erb b/app/views/me/_notice_navbar.html.erb
index 591a68f..b1e0e60 100644
--- a/app/views/me/_notice_navbar.html.erb
+++ b/app/views/me/_notice_navbar.html.erb
@@ -1,4 +1,4 @@
-<%= link_to({ controller: 'notice/me/notifications' }, data: { turbo_frame: '_top' }, id: 'notify_show', class: 'navbar-item') do %>
+<%= link_to({ controller: 'notice/me/notifications' }, data: { turbo_frame: '_top' }, id: 'notice_show', class: 'navbar-item') do %>
<%= current_member.unread_count %>
<% end %>