diff --git a/app/javascript/mastodon/features/about/index.js b/app/javascript/mastodon/features/about/index.js index e59f73738..3468ad19e 100644 --- a/app/javascript/mastodon/features/about/index.js +++ b/app/javascript/mastodon/features/about/index.js @@ -15,7 +15,6 @@ import Image from 'mastodon/components/image'; const messages = defineMessages({ title: { id: 'column.about', defaultMessage: 'About' }, - rules: { id: 'about.rules', defaultMessage: 'Server rules' }, blocks: { id: 'about.blocks', defaultMessage: 'Moderated servers' }, silenced: { id: 'about.domain_blocks.silenced.title', defaultMessage: 'Limited' }, silencedExplanation: { id: 'about.domain_blocks.silenced.explanation', defaultMessage: 'You will generally not see profiles and content from this server, unless you explicitly look it up or opt into it by following.' }, @@ -158,20 +157,6 @@ class About extends React.PureComponent { ))} -
- {!isLoading && (server.get('rules').isEmpty() ? ( -

- ) : ( -
    - {server.get('rules').map(rule => ( -
  1. - {rule.get('text')} -
  2. - ))} -
- ))} -
-
{domainBlocks.get('isLoading') ? ( <>