Typo weight prop type

This commit is contained in:
apanizo 2018-09-06 14:03:07 +02:00
parent 2430937ce5
commit 7d50859cc6
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ const Owners = (props: Props) => {
<Row key={`owner${(index)}`}>
<Col xs={11} xsOffset={1}>
<Block margin="sm">
<Paragraph Weight="bold">Owner {index + 1}</Paragraph>
<Paragraph weight="bold">Owner {index + 1}</Paragraph>
<Block margin="sm">
<Field
name={getOwnerNameBy(index)}

View File

@ -166,7 +166,7 @@ describe('DOM > Feature > SAFE MULTISIG Transactions', () => {
await refreshTransactions(store, address)
transactions = TestUtils.scryRenderedComponentsWithType(SafeDom, Transaction)
statusses = ['Adol 1 Eth Account [Confirmed]', 'Adol Metamask 3 [Confirmed]']
statusses = ['Adol Metamask 3 [Confirmed]', 'Adol 1 Eth Account [Confirmed]']
await checkPendingRemoveOwnerTx(transactions[5], 3, 'Remove Owner Adol Metamask 3', statusses)
await checkThresholdOf(address, 3)
await processTransaction(address, transactions[5].props.transaction, 2, accounts[1], 3)