Browse Source

[Glitch] Fix errors found by eslint

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
closed-social-glitch-2
Mélanie Chauvel (ariasuni) 5 years ago
committed by ThibG
parent
commit
2a4ce7458a
2 changed files with 5 additions and 4 deletions
  1. +4
    -4
      app/javascript/flavours/glitch/features/account/components/profile_column_header.js
  2. +1
    -0
      app/javascript/flavours/glitch/features/following/index.js

+ 4
- 4
app/javascript/flavours/glitch/features/account/components/profile_column_header.js View File

@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import ColumnHeader from '../../../components/column_header';
import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
import { injectIntl, defineMessages } from 'react-intl';
const messages = defineMessages({
profile: { id: 'column_header.profile', defaultMessage: 'Profile' },
@ -22,8 +22,8 @@ class ProfileColumnHeader extends React.PureComponent {
icon='user-circle'
title={intl.formatMessage(messages.profile)}
showBackButton
>
</ColumnHeader>
)
/>
);
}
}

+ 1
- 0
app/javascript/flavours/glitch/features/following/index.js View File

@ -94,4 +94,5 @@ export default class Following extends ImmutablePureComponent {
</Column>
);
}
}

Loading…
Cancel
Save