File Location
src/screens/PaymentMethodModule/AddPayoutMethods/AddPayoutMethods.js 
Data
If you’d like to change data present on the payment method home screen, please locate the payment options display array in
src/screens/PaymentMethodModule/AddPayoutMethods/AddPayoutMethods.jsLocate the payment options array and create/delete/edit an item accordingly
[
{
id: 0,
isActive: true,
title: 'SET AS PRIMARY',
component: (
<SquareListIcon
onPress={() => navigate(Routes.AddCardDetails)}
showBorder={true}
leftIconRightPadding={20}
leftIconLeftPadding={20}
leftIconComponent={<CreditCard />}
title={'Credit Card'}
rightIconComponent={<ArrowRightLongIcon />}
/>
),
},
...
];
// isActive determines which radio button is selected
// title determines the title of the radio button
// component determines which component will be placed below the radio button.