Skip to content
Open
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: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- changed: Use the UI4 warning card for the Reveal Raw Keys and Reveal Master Private Key password confirmation warnings.
- changed: Tron resource staking now describes its claim action as reclaiming your own TRX, instead of claiming a reward.
- changed: Deep links now wait only for the account state they actually use, so a link that just opens a scene, such as the buy/sell entry, follows immediately after login instead of waiting for every wallet to finish loading.
- fixed: Wallet list rows now announce as a button to screen readers, instead of as an inert group that reads out but does not present itself as something to activate.
- fixed: The buy/sell amount field no longer reads "Amount undefined" while the app is still working out which wallet to use.
- fixed: Show the Monero Transaction Key of a send whose key never reached the transaction's saved metadata, by falling back to the key the wallet engine mirrors into `otherParams`. Covers sends made on 4.49.0 and later while the send path reported no key, on devices that still hold the original wallet cache.
- fixed: Force `NODE_ENV=test` in the Jest script so UI tests keep working when npm is invoked via Socket (Socket otherwise sets `NODE_ENV=development`, which makes react-native-gesture-handler treat Jest as a non-test env).
Expand Down
2 changes: 1 addition & 1 deletion maestro/07-wallets/C000045-add-edit-tokens.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ tags:
- tapOn: "Confirm & Finish"

- tapOn:
id: "undefined.clearIcon"
id: "manageTokensSearch.clearIcon"

- runFlow:
label: "Add custom token"
Expand Down
2 changes: 1 addition & 1 deletion src/components/themed/WalletListCurrencyRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ const WalletListCurrencyRowComponent: React.FC<Props> = props => {
return (
<View
accessible
accessibilityRole="button"
testID={`walletListRow_${walletName}_${displayCurrencyCode}`}
>
<EdgeCard
Expand All @@ -197,7 +198,6 @@ const WalletListCurrencyRowComponent: React.FC<Props> = props => {
start: { x: 0, y: 0 },
end: { x: 1, y: 0 }
}}
testID={`walletListRow_${walletName}_${displayCurrencyCode}`}
>
<View style={styles.textContentContainer}>
{firstRow}
Expand Down
Loading