about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/getting_started/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/getting_started/index.js
parente82467ca41f4940add32061ca70214e236cc435f (diff)
Add title to pages with missing title in Web UI (#19322)
Diffstat (limited to 'app/javascript/mastodon/features/getting_started/index.js')
-rw-r--r--app/javascript/mastodon/features/getting_started/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js
index d998127a2..42a5b581f 100644
--- a/app/javascript/mastodon/features/getting_started/index.js
+++ b/app/javascript/mastodon/features/getting_started/index.js
@@ -8,7 +8,7 @@ import { connect } from 'react-redux';
 import PropTypes from 'prop-types';
 import ImmutablePropTypes from 'react-immutable-proptypes';
 import ImmutablePureComponent from 'react-immutable-pure-component';
-import { me, title, showTrends } from '../../initial_state';
+import { me, showTrends } from '../../initial_state';
 import { fetchFollowRequests } from 'mastodon/actions/accounts';
 import { List as ImmutableList } from 'immutable';
 import NavigationContainer from '../compose/containers/navigation_container';
@@ -137,7 +137,7 @@ class GettingStarted extends ImmutablePureComponent {
         {(multiColumn && showTrends) && <TrendsContainer />}
 
         <Helmet>
-          <title>{intl.formatMessage(messages.menu)} - {title}</title>
+          <title>{intl.formatMessage(messages.menu)}</title>
         </Helmet>
       </Column>
     );