fix: order import (again) (#44670)

* refactor: reenable import ordering

* refactor: require alphabetic ordered imports
This commit is contained in:
Oliver Eyton-Williams
2022-01-05 23:05:50 +01:00
committed by GitHub
parent 513205ddf5
commit 60258d40c9
4 changed files with 5 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ import store from 'store';
import { SuperBlocks } from '../../../config/certification-settings';
import { actionTypes as challengeTypes } from '../templates/Challenges/redux/action-types';
import { CURRENT_CHALLENGE_KEY } from '../templates/Challenges/redux/current-challenge-saga';
import { emailToABVariant } from '../utils/A-B-tester';
import { createAcceptTermsSaga } from './accept-terms-saga';
import { actionTypes } from './action-types';
import { createAppMountSaga } from './app-mount-saga';
@@ -12,7 +13,6 @@ import { createDonationSaga } from './donation-saga';
import failedUpdatesEpic from './failed-updates-epic';
import { createFetchUserSaga } from './fetch-user-saga';
import { createGaSaga } from './ga-saga';
import { emailToABVariant } from '../utils/A-B-tester';
import hardGoToEpic from './hard-go-to-epic';
import { createReportUserSaga } from './report-user-saga';

View File

@@ -1,8 +1,8 @@
import React from 'react';
import { useTranslation } from 'react-i18next';
import { Alert } from '@freecodecamp/react-bootstrap';
import { SuperBlocks } from '../../../../../config/certification-settings';
import { Link } from '../../../components/helpers';
import { Alert } from '@freecodecamp/react-bootstrap';
interface LegacyLinksProps {
superBlock: SuperBlocks;