This screen was designed to let users add a credit card to their payment methods or choose their primary one.
File Location
src/screens/PaymentMethodModule/CreditCardSettings/CreditCardSettings.js 
Data
If you’d like to change data present on this screen, please locate the following file
src/screens/PaymentMethodModule/CreditCardSettings/CreditCardSettings.jscreditCards array to change the list displayed.[
{
id: 0,
isActive: true,
component: (
<SquareGenericInputField
rightIconComponent={<CreditCard />}
rightIconPaddingLeft={23}
rightIconPaddingRight={23}
placeholder="**** **** **** 5024"
keyboardType={'number-pad'}
type={SQUARE_TEXTFIELD_TYPE.TEXT}
cardValidation={true}
maxLength={19}
isDisabled={true}
/>
),
title: 'SET AS PRIMARY',
},
...
]