Skip to content

Commit

Permalink
fix: showing the sapling address in receive screen
Browse files Browse the repository at this point in the history
  • Loading branch information
juanky201271 committed Jan 27, 2025
1 parent 7db6d80 commit 5ad3d0a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions __tests__/__snapshots__/Header.snapshot.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ exports[`Component Header - test Header Complex - snapshot 1`] = `
<View
style={
{
"flexDirection": "row",
"minHeight": 25,
}
}
Expand Down
2 changes: 2 additions & 0 deletions __tests__/__snapshots__/History.snapshot.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ exports[`Component History - test History currency USD, privacy high & mode adva
<View
style={
{
"flexDirection": "row",
"minHeight": 25,
}
}
Expand Down Expand Up @@ -804,6 +805,7 @@ exports[`Component History - test History no currency, privacy normal & mode bas
<View
style={
{
"flexDirection": "row",
"minHeight": 25,
}
}
Expand Down
2 changes: 2 additions & 0 deletions __tests__/__snapshots__/Messages.snapshot.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ exports[`Component Messages - test Messages currency USD, privacy high & mode ad
<View
style={
{
"flexDirection": "row",
"minHeight": 25,
}
}
Expand Down Expand Up @@ -419,6 +420,7 @@ exports[`Component Messages - test Messages no currency, privacy normal & mode b
<View
style={
{
"flexDirection": "row",
"minHeight": 25,
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
"prev": "Prev",
"next": "Next",
"shielded-orchard": "Orchard",
"shielded-sapling": "Sapling",
"shielded-sapling": "Z-Sapling",
"shielded-orchard-sapling": "Orchard+Sapling",
"shielded-full": "Full"
},
Expand Down
2 changes: 1 addition & 1 deletion app/translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
"prev": "Anterior",
"next": "Siguiente",
"shielded-orchard": "Orchard",
"shielded-sapling": "Sapling",
"shielded-sapling": "Z-Sapling",
"shielded-orchard-sapling": "Orchard+Sapling",
"shielded-full": "Completa"
},
Expand Down
2 changes: 1 addition & 1 deletion app/translations/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
"prev": "Anterior",
"next": "Próximo",
"shielded-orchard": "Orchard",
"shielded-sapling": "Sapling",
"shielded-sapling": "Z-Sapling",
"shielded-orchard-sapling": "Orchard+Sapling",
"shielded-full": "Completa"
},
Expand Down
2 changes: 1 addition & 1 deletion app/translations/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
"prev": "Назад",
"next": "Далее",
"shielded-orchard": "Orchard",
"shielded-sapling": "Sapling",
"shielded-sapling": "Z-Sapling",
"shielded-orchard-sapling": "Orchard+Sapling",
"shielded-full": "Полный"
},
Expand Down
2 changes: 1 addition & 1 deletion components/Receive/Receive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ const Receive: React.FunctionComponent<ReceiveProps> = ({
</FadeText>
</View>
</TouchableOpacity>
{false && sapling && (
{sapling && (
<TouchableOpacity
onPress={() => {
setShielded(ShieldedEnum.sapling);
Expand Down

0 comments on commit 5ad3d0a

Please sign in to comment.