• File Location

    • src/screens/PaymentMethodModule/AddPayoutMethods/AddPayoutMethods.js
      ![Simulator Screen Shot - iPhone 12 - 2021-08-28 at 22.04.24.png](<https://s3-us-west-2.amazonaws.com/secure.notion-static.com/c0694093-bccd-4894-9655-1b55c0c8eef5/Simulator_Screen_Shot_-_iPhone_12_-_2021-08-28_at_22.04.24.png>)
    
  • 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.js
    • Locate 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.