eslint fixes

This commit is contained in:
Mikhail Mikheev 2019-04-04 18:04:59 +04:00
parent e33c90c230
commit 32970871d2
2 changed files with 2 additions and 2 deletions

View File

@ -40,4 +40,4 @@ export const getOwners = async (safeAddress: string): Map<string, string> => {
const data: Object = await loadFromStorage(`${OWNERS_KEY}-${safeAddress}`)
return data ? Map(data) : Map()
}
}

View File

@ -5,7 +5,7 @@ import { SAFES_KEY } from '~/logic/safe/utils'
import { type SafeProps } from '~/routes/safe/store/model/safe'
import { loadFromStorage } from '~/utils/storage'
import { addSafe } from './addSafe'
import { buildSafe } from '../reducer/safe';
import { buildSafe } from '~/routes/safe/store/reducer/safe'
export default () => async (dispatch: ReduxDispatch<GlobalState>) => {
try {