File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11# edge-react-gui
22
33## Unreleased (develop)
4-
5- - added: ` parseMarkdown ` supports bold text (` **strong** ` )
6- - changed: Duress mode copy
74
85## 4.34.0 (staging)
96
7+ - added: ` parseMarkdown ` supports bold text (` **strong** ` )
108- added: ` PendingTxModal ` to route to pending txs for acceleration
119- added: Added "Report Error" button to all ` AlertDropdown ` s from ` showError ` .
10+ - changed: Duress mode copy
1211- changed: Increased tappable area for the close button of ` NotificationCard `
1312- changed: Replaced 'react-native-camera' with 'react-native-vision-camera'
1413- changed: Upgrade to React Native v0.79
1514- changed: Update translations
1615- changed: Enable ` keysOnlyMode ` for Bitcoin Gold
1716- changed: Increase tappable area of locked Settings
1817- changed: Help Modal reordered and reworded; added Live Chat option that opens the default browser
18+ - fixed: Maestro targetability for "Next" button in create wallet flow
1919
2020## 4.33.0 (2025-08-01)
2121
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import {
2222import { useDispatch , useSelector } from '../../types/reactRedux'
2323import type { EdgeAppSceneProps , NavigationBase } from '../../types/routerTypes'
2424import type { EdgeAsset } from '../../types/types'
25+ import { isMaestro } from '../../util/maestro'
2526import { logEvent } from '../../util/tracking'
2627import { EdgeButton } from '../buttons/EdgeButton'
2728import { SceneButtons } from '../buttons/SceneButtons'
@@ -419,9 +420,10 @@ const CreateWalletSelectCryptoComponent = (props: Props) => {
419420 < SceneButtons
420421 primary = { {
421422 label : lstrings . string_next_capitalized ,
422- onPress : handleNextPress
423+ onPress : handleNextPress ,
424+ testID : 'nextButton'
423425 } }
424- absolute
426+ absolute = { ! isMaestro ( ) }
425427 />
426428 </ EdgeAnim >
427429 ) ,
You can’t perform that action at this time.
0 commit comments