Skip to content

Commit

Permalink
Use platform independent radio button for approver selection
Browse files Browse the repository at this point in the history
  • Loading branch information
hbriese committed Jul 10, 2023
1 parent dbfe4dd commit 8bdaa2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/screens/user/UserApproverItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function UserApproverItem(props: UserApproverItemProps) {
supporting={truncateAddr(a.address)}
{...(selected && {
trailing: () => (
<RadioButton value={a.address} status={selected ? 'checked' : 'unchecked'} />
<RadioButton.IOS value={a.address} status={selected ? 'checked' : 'unchecked'} />
),
})}
onPress={() => navigate('Approver', { approver: a.address })}
Expand Down

0 comments on commit 8bdaa2b

Please sign in to comment.