Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/flipcash/core/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,6 @@
<string name="label_blendModeColorDodge">Color Dodge</string>
<string name="label_blendModePlusLighter">Plus Lighter</string>

<string name="title_cashReserves">USDF</string>
<string name="action_buyMore">Buy More</string>

<string name="title_addMoney">Add Money</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,13 @@ private fun TokenTxProcessingScreen(
val name = when (state.purpose) {
is SwapPurpose.Convert -> state.destinationTokenName
is SwapPurpose.BalanceIncrease -> state.tokenName
else -> stringResource(R.string.title_cashReserves)
// Selling is unreachable now that the v1 token screen is gone, and a
// purpose is always set by the time a swap reaches this screen.
else -> null
}
state.netTransferAmount.formatted(suffix = stringResource(R.string.label_ofToken, name))
state.netTransferAmount.formatted(
suffix = name?.let { stringResource(R.string.label_ofToken, it) },
)
}
},
style = CodeTheme.typography.textLarge,
Expand Down
Loading