This repository was archived by the owner on Feb 8, 2025. It is now read-only.
Commit a1fe860 1 parent a57890b commit a1fe860 Copy full SHA for a1fe860
File tree 1 file changed +6
-6
lines changed
app/src/components/transaction
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -134,20 +134,20 @@ export function FeesSection(props: FeeTokenProps) {
134
134
</ Text >
135
135
</ View >
136
136
137
- { ! activationFee . eq ( 0 ) && (
137
+ { ! maxActivationFee . eq ( 0 ) && (
138
138
< View style = { styles . row } >
139
- < Text variant = "labelLarge" > Activation fee{ paymasterFeesEstimatedLabel } </ Text >
139
+ < Text variant = "labelLarge" > Activation fee (max) </ Text >
140
140
< Text variant = "bodySmall" >
141
- < TokenAmount token = { p . feeToken } amount = { activationFee . div ( ethPerFeeToken ) } />
141
+ < TokenAmount token = { p . feeToken } amount = { maxActivationFee . div ( ethPerFeeToken ) } />
142
142
</ Text >
143
143
</ View >
144
144
) }
145
145
146
- { ! maxActivationFee . eq ( 0 ) && (
146
+ { ! activationFee . eq ( 0 ) && (
147
147
< View style = { styles . row } >
148
- < Text variant = "labelLarge" > Activation fee (max) </ Text >
148
+ < Text variant = "labelLarge" > Activation fee{ paymasterFeesEstimatedLabel } </ Text >
149
149
< Text variant = "bodySmall" >
150
- < TokenAmount token = { p . feeToken } amount = { maxActivationFee . div ( ethPerFeeToken ) } />
150
+ < TokenAmount token = { p . feeToken } amount = { activationFee . div ( ethPerFeeToken ) } />
151
151
</ Text >
152
152
</ View >
153
153
) }
You can’t perform that action at this time.
0 commit comments