Reorder fields
This commit is contained in:
parent
9484ed59e2
commit
eaa018e207
|
@ -150,12 +150,6 @@ const Details: React.FC<DetailsProps> = ({
|
|||
)}
|
||||
{txData.type === 2 && (
|
||||
<>
|
||||
<InfoRow title="Max Fee Per Gas">
|
||||
<span>
|
||||
<FormattedBalance value={txData.maxFeePerGas!} /> Ether (
|
||||
<FormattedBalance value={txData.maxFeePerGas!} decimals={9} /> Gwei)
|
||||
</span>
|
||||
</InfoRow>
|
||||
<InfoRow title="Max Priority Fee Per Gas">
|
||||
<span>
|
||||
<FormattedBalance value={txData.maxPriorityFeePerGas!} /> Ether (
|
||||
|
@ -166,6 +160,12 @@ const Details: React.FC<DetailsProps> = ({
|
|||
Gwei)
|
||||
</span>
|
||||
</InfoRow>
|
||||
<InfoRow title="Max Fee Per Gas">
|
||||
<span>
|
||||
<FormattedBalance value={txData.maxFeePerGas!} /> Ether (
|
||||
<FormattedBalance value={txData.maxFeePerGas!} decimals={9} /> Gwei)
|
||||
</span>
|
||||
</InfoRow>
|
||||
</>
|
||||
)}
|
||||
<InfoRow title="Transaction Fee">
|
||||
|
|
Loading…
Reference in New Issue