Skip to content

Commit

Permalink
Refactor imports on AuthenticationPage
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnito committed Nov 3, 2020
1 parent bff8c04 commit 7a1761d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/containers/AuthenticationPage/AuthenticationPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ import { compose } from 'redux';
import { connect } from 'react-redux';
import { withRouter, Redirect } from 'react-router-dom';
import Cookies from 'js-cookie';
import classNames from 'classnames';
import { isEmpty } from 'lodash';

import routeConfiguration from '../../routeConfiguration';
import { pathByRouteName } from '../../util/routes';
import { apiBaseUrl } from '../../util/api';
import { FormattedMessage, injectIntl, intlShape } from '../../util/reactIntl';
import classNames from 'classnames';
import config from '../../config';
import { propTypes } from '../../util/types';
import { ensureCurrentUser } from '../../util/data';
Expand Down Expand Up @@ -42,7 +44,6 @@ import { manageDisableScrolling } from '../../ducks/UI.duck';

import css from './AuthenticationPage.module.css';
import { FacebookLogo } from './socialLoginLogos';
import { isEmpty } from 'lodash';

export class AuthenticationPageComponent extends Component {
constructor(props) {
Expand Down

0 comments on commit 7a1761d

Please sign in to comment.