Add code formatting

This commit is contained in:
Germán Martínez 2019-05-22 12:51:02 +02:00
parent 79bb25727a
commit 654cc5a0d7
4 changed files with 11 additions and 25 deletions

View File

@ -8,9 +8,6 @@ type AddTokenProps = {
token: Token,
}
export const addToken = createAction<string, *, *>(
ADD_TOKEN,
(token: Token): AddTokenProps => ({
token,
}),
)
export const addToken = createAction<string, *, *>(ADD_TOKEN, (token: Token): AddTokenProps => ({
token,
}))

View File

@ -9,11 +9,8 @@ type TokenProps = {
tokens: Map<string, Token>,
}
const addTokens = createAction<string, *, *>(
ADD_TOKENS,
(tokens: Map<string, Token>): TokenProps => ({
tokens,
}),
)
const addTokens = createAction<string, *, *>(ADD_TOKENS, (tokens: Map<string, Token>): TokenProps => ({
tokens,
}))
export default addTokens

View File

@ -17,13 +17,8 @@ export const getNamesFrom = (values: Object): string[] => {
return accounts.map(account => values[account]).slice(0, values.owners)
}
export const getOwnersFrom = (
names: string[],
addresses: string[],
): Array<string, string> => {
const owners = names.map((name: string, index: number) => makeOwner(
{ name, address: addresses[index] },
))
export const getOwnersFrom = (names: string[], addresses: string[]): Array<string, string> => {
const owners = names.map((name: string, index: number) => makeOwner({ name, address: addresses[index] }))
return owners
}

View File

@ -18,12 +18,9 @@ type ActionReturn = {
safe: Safe,
}
export const addSafe = createAction<string, Function, ActionReturn>(
ADD_SAFE,
(safe: Safe): ActionReturn => ({
safe,
}),
)
export const addSafe = createAction<string, Function, ActionReturn>(ADD_SAFE, (safe: Safe): ActionReturn => ({
safe,
}))
const saveSafe = (name: string, address: string, threshold: number, ownersName: string[], ownersAddress: string[]) => (
dispatch: ReduxDispatch<GlobalState>,