Skip to content

Commit 6ac9ffc

Browse files
authored
Merge pull request #5582 from EdgeApp/matthew/optionaloptional-required-text
Fix Required text on optional import options
2 parents 47f751a + c98a0c5 commit 6ac9ffc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- removed: Disable Fantom transaction list
1616
- fixed: Show the correct username in the "Forget Account" modal.
1717
- fixed: `TransactionListRow` missing timestamp while syncing
18+
- fixed: Don't show required text for optional import options
1819

1920
## 4.27.2 (2025-05-13)
2021

src/components/scenes/CreateWalletImportOptionsScene.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const CreateWalletImportOptionsComponent = (props: Props) => {
179179
color: theme.deactivatedText
180180
}}
181181
>
182-
{lstrings.fragment_required}
182+
{opt.required ? lstrings.fragment_required : null}
183183
</EdgeText>
184184
</View>
185185
</EdgeRow>

0 commit comments

Comments
 (0)