about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/privacy_policy/index.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-10-09 06:08:37 +0200
committerClaire <claire.github-309c@sitedethib.com>2022-10-28 19:24:02 +0200
commitdea951cce881a4d7379013d7cb5b8d012b5aa59d (patch)
treef349a8eed36f719751ad29290e00316a875b1ebb /app/javascript/flavours/glitch/features/privacy_policy/index.js
parente5720cd54027951d450977ba1a836b60b095cbb0 (diff)
[Glitch] Add dismissable hints to various timelines in web UI
Port f41ec9af05d3e2145e62f705225dbabb7e04e242 to glitch-soc

Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/privacy_policy/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/privacy_policy/index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/privacy_policy/index.js b/app/javascript/flavours/glitch/features/privacy_policy/index.js
index 816010294..c1f7c4f1e 100644
--- a/app/javascript/flavours/glitch/features/privacy_policy/index.js
+++ b/app/javascript/flavours/glitch/features/privacy_policy/index.js
@@ -1,6 +1,5 @@
 import React from 'react';
 import PropTypes from 'prop-types';
-import { title } from 'flavours/glitch/initial_state';
 import { Helmet } from 'react-helmet';
 import { FormattedMessage, FormattedDate, injectIntl, defineMessages } from 'react-intl';
 import Column from 'flavours/glitch/components/column';
@@ -51,7 +50,7 @@ class PrivacyPolicy extends React.PureComponent {
         </div>
 
         <Helmet>
-          <title>{intl.formatMessage(messages.title)} - {title}</title>
+          <title>{intl.formatMessage(messages.title)}</title>
         </Helmet>
       </Column>
     );