about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/about/index.js
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2022-10-09 10:55:09 +0900
committerGitHub <noreply@github.com>2022-10-09 03:55:09 +0200
commita5112b51fdf3ec2b31690e064ea330a090e71957 (patch)
tree49ec7d189dd61c8e113b37c514c33296e200c2ca /app/javascript/mastodon/features/about/index.js
parente82467ca41f4940add32061ca70214e236cc435f (diff)
Add title to pages with missing title in Web UI (#19322)
Diffstat (limited to 'app/javascript/mastodon/features/about/index.js')
-rw-r--r--app/javascript/mastodon/features/about/index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/about/index.js b/app/javascript/mastodon/features/about/index.js
index c48d81d9a..bc8d3a41b 100644
--- a/app/javascript/mastodon/features/about/index.js
+++ b/app/javascript/mastodon/features/about/index.js
@@ -4,7 +4,6 @@ import PropTypes from 'prop-types';
 import Column from 'mastodon/components/column';
 import LinkFooter from 'mastodon/features/ui/components/link_footer';
 import { Helmet } from 'react-helmet';
-import { title } from 'mastodon/initial_state';
 
 const messages = defineMessages({
   title: { id: 'column.about', defaultMessage: 'About' },
@@ -25,7 +24,7 @@ class About extends React.PureComponent {
         <LinkFooter />
 
         <Helmet>
-          <title>{intl.formatMessage(messages.title)} - {title}</title>
+          <title>{intl.formatMessage(messages.title)}</title>
         </Helmet>
       </Column>
     );