Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 19a089d

Browse files
committed
Use NamedFieldSelect in pay-bitcoin-confirm-mobile view
1 parent 7533547 commit 19a089d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/view/pay-bitcoin-confirm-mobile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { observer } from 'mobx-react';
44
import PropTypes from 'prop-types';
55
import Background from '../component/background';
66
import MainContent from '../component/main-content';
7-
import { NamedField } from '../component/field';
7+
import { NamedField, NamedFieldSelect } from '../component/field';
88
import { Header, Title } from '../component/header';
99
import { CancelButton, BackButton, SmallGlasButton } from '../component/button';
1010
import Card from '../component/card';
@@ -66,9 +66,9 @@ const PayBitcoinConfirmView = ({ store, nav, payment }) => (
6666
{store.unitLabel}
6767
</BalanceLabelUnit>
6868
</BalanceLabel>
69-
<NamedField name="Fee">
69+
<NamedFieldSelect name="Fee" onPress={() => {}}>
7070
{store.paymentFeeLabel} {store.unitLabel}
71-
</NamedField>
71+
</NamedFieldSelect>
7272
<NamedField name="Total" style={styles.totalLbl}>
7373
{store.paymentTotalLabel} {store.unitLabel}
7474
</NamedField>

0 commit comments

Comments
 (0)