Skip to content

Commit dafe955

Browse files
committed
fix(payments): correct deposit USDC button label and action
Fix the deposit string to say "USDC" instead of "USDF" and use it as the other-wallet purchase option label for consistency. Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 807b939 commit dafe955

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/flipcash
    • core/src/main/res/values
    • shared/payments/src/main/kotlin/com/flipcash/app/payments/internal

apps/flipcash/core/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182

183183
<string name="title_learnToDeposit">Purchase USDF on a crypto exchange with your bank account, and then deposit into Flipcash</string>
184184
<string name="action_learnHowToDepositFunds">Learn How to Get USDF</string>
185-
<string name="action_depositUsdc">Deposit USDF</string>
185+
<string name="action_depositUsdc">Deposit USDC</string>
186186

187187
<string name="title_learnToWithdraw">You can withdraw your funds at any time, and move them into your bank account</string>
188188
<string name="action_learnHowToWithdrawFunds">Learn How to Withdraw Funds</string>

apps/flipcash/shared/payments/src/main/kotlin/com/flipcash/app/payments/internal/Buttons.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ internal fun purchaseOptions(
8181
if (state.canUseOtherWallets) {
8282
add(
8383
BottomBarAction(
84-
text = resources.getString(R.string.title_onrampProviderOtherWallet),
84+
text = resources.getString(R.string.action_depositUsdc),
8585
onClick = { onClick(PurchaseMethod.OtherWallet) }
8686
)
8787
)

0 commit comments

Comments
 (0)