Skip to content

Commit 33290c9

Browse files
authored
Merge pull request #5709 from EdgeApp/jon/fix/maestro-create-next
Fix maestro button
2 parents bddb2f1 + 08bd621 commit 33290c9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
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

src/components/scenes/CreateWalletSelectCryptoScene.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
import { useDispatch, useSelector } from '../../types/reactRedux'
2323
import type { EdgeAppSceneProps, NavigationBase } from '../../types/routerTypes'
2424
import type { EdgeAsset } from '../../types/types'
25+
import { isMaestro } from '../../util/maestro'
2526
import { logEvent } from '../../util/tracking'
2627
import { EdgeButton } from '../buttons/EdgeButton'
2728
import { 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
),

0 commit comments

Comments
 (0)