Skip to content

Commit

Permalink
fix improper export of TermsOfService class
Browse files Browse the repository at this point in the history
  • Loading branch information
toufali committed Jul 11, 2023
1 parent a95c2ce commit 456f44f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/javascript/mastodon/features/terms_of_service/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import { Helmet } from 'react-helmet';

import Column from 'mastodon/components/column';

export default @injectIntl
class PrivacyPolicy extends React.PureComponent {
class TermsOfService extends React.PureComponent {

static propTypes = {
intl: PropTypes.object,
Expand Down Expand Up @@ -239,3 +238,5 @@ class PrivacyPolicy extends React.PureComponent {
}

}

export default injectIntl(TermsOfService);

0 comments on commit 456f44f

Please sign in to comment.