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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# edge-react-gui

## Unreleased (develop)

- added: `parseMarkdown` supports bold text (`**strong**`)
- changed: Duress mode copy

## 4.34.0 (staging)

- added: `parseMarkdown` supports bold text (`**strong**`)
- added: `PendingTxModal` to route to pending txs for acceleration
- added: Added "Report Error" button to all `AlertDropdown`s from `showError`.
- changed: Duress mode copy
- changed: Increased tappable area for the close button of `NotificationCard`
- changed: Replaced 'react-native-camera' with 'react-native-vision-camera'
- changed: Upgrade to React Native v0.79
- changed: Update translations
- changed: Enable `keysOnlyMode` for Bitcoin Gold
- changed: Increase tappable area of locked Settings
- changed: Help Modal reordered and reworded; added Live Chat option that opens the default browser
- fixed: Maestro targetability for "Next" button in create wallet flow

## 4.33.0 (2025-08-01)

Expand Down
6 changes: 4 additions & 2 deletions src/components/scenes/CreateWalletSelectCryptoScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
import { useDispatch, useSelector } from '../../types/reactRedux'
import type { EdgeAppSceneProps, NavigationBase } from '../../types/routerTypes'
import type { EdgeAsset } from '../../types/types'
import { isMaestro } from '../../util/maestro'
import { logEvent } from '../../util/tracking'
import { EdgeButton } from '../buttons/EdgeButton'
import { SceneButtons } from '../buttons/SceneButtons'
Expand Down Expand Up @@ -419,9 +420,10 @@ const CreateWalletSelectCryptoComponent = (props: Props) => {
<SceneButtons
primary={{
label: lstrings.string_next_capitalized,
onPress: handleNextPress
onPress: handleNextPress,
testID: 'nextButton'
}}
absolute
absolute={!isMaestro()}
/>
</EdgeAnim>
),
Expand Down
Loading