Skip to content

Commit

Permalink
Fix suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
OGPoyraz committed Sep 11, 2024
1 parent bcacac2 commit 968b910
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions app/components/UI/ApprovalTagUrl/ApprovalTagUrl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ const ApprovalTagUrl = ({

if (url || currentEnsName) {
title = prefixUrlWithProtocol(currentEnsName || url || '');
} else {
title = '';
}

return title;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const TransactionReviewEIP1559 = ({
>
{!origin
? strings('transaction_review_eip1559.estimated_gas_fee')
: strings('transaction_review_eip1559.estimated_fee')}
: strings('transaction_review_eip1559.network_fee')}
<TouchableOpacity
style={styles.gasInfoContainer}
onPress={() =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const TransactionReviewEIP1559Update = ({
>
{!origin
? strings('transaction_review_eip1559.estimated_gas_fee')
: strings('transaction_review_eip1559.estimated_fee')}
: strings('transaction_review_eip1559.network_fee')}
<TouchableOpacity
style={styles.gasInfoContainer}
onPress={() =>
Expand Down
2 changes: 1 addition & 1 deletion locales/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2946,7 +2946,7 @@
},
"transaction_review_eip1559": {
"estimated_gas_fee": "Estimated gas fee",
"estimated_fee": "Estimated fee",
"network_fee": "Network fee",
"max_fee": "Max fee",
"total": "Total",
"max_amount": "Max amount",
Expand Down

0 comments on commit 968b910

Please sign in to comment.