Skip to content

Commit

Permalink
fix: copy
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre committed Sep 17, 2024
1 parent e164f21 commit 82e3bef
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ export const ClaimStatus: React.FC<ClaimStatusProps> = ({ accountId }) => {
</Row>
<Row>
<Row.Label>
{translate(status ? 'modals.status.estimatedGas' : 'modals.status.gasUsed')}
{translate(
statusText === TxStatus.Pending
? 'modals.status.estimatedGas'
: 'modals.status.gasUsed',
)}
</Row.Label>
<Row.Value>
<Stack textAlign='right' spacing={0}>
Expand Down

0 comments on commit 82e3bef

Please sign in to comment.