diff --git a/app/views/form/page.html.erb b/app/views/form/page.html.erb
index 505924fbe..72a825957 100644
--- a/app/views/form/page.html.erb
+++ b/app/views/form/page.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, browser_title(subsection) %>
+<% content_for :title, subsection %>
<% content_for :before_content do %>
<%= govuk_back_link(
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index ce2ec84db..79d0637f4 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -1,7 +1,7 @@
-
<%= yield(:title).present? ? yield(:title) : t('service_name') %>
+
<%= yield(:title).present? ? browser_title(yield(:title)) : t('service_name') %>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= tag :meta, name: 'viewport', content: 'width=device-width, initial-scale=1' %>
diff --git a/app/views/organisations/show.html.erb b/app/views/organisations/show.html.erb
index 3748e6cc0..d554e6596 100644
--- a/app/views/organisations/show.html.erb
+++ b/app/views/organisations/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, browser_title("Your organisation (Details)") %>
+<% content_for :title, "Your organisation (Details)" %>
<% content_for :tab_title do %>
<%= "Details" %>
<% end %>
diff --git a/app/views/organisations/users.html.erb b/app/views/organisations/users.html.erb
index 653cfc569..d088445d1 100644
--- a/app/views/organisations/users.html.erb
+++ b/app/views/organisations/users.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, browser_title("Your organisation (Users)") %>
+<% content_for :title, "Your organisation (Users)" %>
<% content_for :tab_title do %>
<%= "Users" %>
<% end %>
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 032938628..7b2dae5c2 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, browser_title("Your account") %>
+<% content_for :title, "Your account" %>