Skip to content
This repository has been archived by the owner on Sep 19, 2021. It is now read-only.

Commit

Permalink
Use aliases in a few places to make sure it works
Browse files Browse the repository at this point in the history
  • Loading branch information
Suzanne Rozier committed Feb 8, 2019
1 parent ee4f245 commit a7b8066
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/actions/ApplicationActions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { env, navigationWalker } from '../config'
import { api } from '../services'
import schema, { unschema } from '../schema'
import validate from '../validators'
import { env, navigationWalker } from '@config'
import { api } from '@services'
import schema, { unschema } from '@schema'
import validate from '@validators'

export function getApplicationState(done) {
return function(dispatch, getState) {
Expand Down
4 changes: 2 additions & 2 deletions src/actions/AuthActions.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { env } from '../config'
import { api } from '../services/api'
import { env } from '@config'
import { api } from '@services/api'
import AuthConstants from './AuthConstants'

/**
Expand Down
2 changes: 1 addition & 1 deletion src/actions/AuthActions.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { api } from '../services/api'
import { api } from '@services/api'
import MockAdapter from 'axios-mock-adapter'
import configureMockStore from 'redux-mock-store'
import thunk from 'redux-thunk'
Expand Down
4 changes: 2 additions & 2 deletions src/components/ErrorList/ErrorList.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { connect } from 'react-redux'
import { navigationWalker } from '../../config'
import { closest } from '../Form/Generic'
import { navigationWalker } from '@config'
import { closest } from '@components/Form/Generic'

/**
* The error list component.
Expand Down
6 changes: 3 additions & 3 deletions src/components/Form/Consent/Consent.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { connect } from 'react-redux'
import { i18n } from '../../../config'
import { updateApplication } from '../../../actions/ApplicationActions'
import Modal from '../Modal'
import { i18n } from 'config'
import { updateApplication } from '@actions/ApplicationActions'
import Modal from '@components/Form/Modal'

export class Consent extends React.Component {
constructor(props) {
Expand Down

0 comments on commit a7b8066

Please sign in to comment.