change step name, replace text for owners/confirmations step

This commit is contained in:
Mikhail Mikheev 2019-09-09 15:10:24 +04:00
parent 89dd6f2bdb
commit 014103de3c
2 changed files with 9 additions and 3 deletions

View File

@ -13,10 +13,10 @@ import { getOwnerNameBy, getOwnerAddressBy, FIELD_CONFIRMATIONS } from '~/routes
import { history } from '~/store' import { history } from '~/store'
import { secondary } from '~/theme/variables' import { secondary } from '~/theme/variables'
const getSteps = () => ['Start', 'Owners and confirmations', 'Review'] const getSteps = () => ['Name', 'Owners and confirmations', 'Review']
const initialValuesFrom = (userAccount: string) => ({ const initialValuesFrom = (userAccount: string) => ({
[getOwnerNameBy(0)]: 'My Metamask (me)', [getOwnerNameBy(0)]: 'My Wallet',
[getOwnerAddressBy(0)]: userAccount, [getOwnerAddressBy(0)]: userAccount,
[FIELD_CONFIRMATIONS]: '1', [FIELD_CONFIRMATIONS]: '1',
}) })

View File

@ -109,7 +109,13 @@ const SafeOwners = (props: Props) => {
<> <>
<Block className={classes.title}> <Block className={classes.title}>
<Paragraph noMargin size="md" color="primary"> <Paragraph noMargin size="md" color="primary">
Specify the owners of the Safe. Your Safe will have one or more owners. We have prefilled the first owner with your connected wallet details,
but you are free to change this to a different owner.
<br />
<br />
Add additional owners (e.g. wallets of your teammates) and specify how many of them have to confirm a
transaction before it gets executed. In general, the more confirmations required, the more secure is your
Safe.
</Paragraph> </Paragraph>
</Block> </Block>
<Hairline /> <Hairline />