Reorder fields

This commit is contained in:
Willian Mitsuda 2021-07-28 16:09:40 -03:00
parent 9484ed59e2
commit eaa018e207

View File

@ -150,12 +150,6 @@ const Details: React.FC<DetailsProps> = ({
)} )}
{txData.type === 2 && ( {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"> <InfoRow title="Max Priority Fee Per Gas">
<span> <span>
<FormattedBalance value={txData.maxPriorityFeePerGas!} /> Ether ( <FormattedBalance value={txData.maxPriorityFeePerGas!} /> Ether (
@ -166,6 +160,12 @@ const Details: React.FC<DetailsProps> = ({
Gwei) Gwei)
</span> </span>
</InfoRow> </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"> <InfoRow title="Transaction Fee">