Skip to content

Commit

Permalink
Merge branch 'fix/ui-20240801' into tmp/20240731
Browse files Browse the repository at this point in the history
  • Loading branch information
richardo2016x committed Aug 1, 2024
2 parents 41776b2 + 3c4c40a commit dc08706
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const RevokeButton: React.FC<Props> = ({ revokeSummary, onRevoke }) => {
<>
{revokeTxCount > 1 ? (
<div className="mt-[16px] h-[16px] mb-[16px] text-13 leading-[15px] text-r-neutral-body">
{revokeTxCount} transaction(s) to be signed sequentially
{revokeTxCount} transactions to be signed sequentially
</div>
) : (
<div className="mt-[16px] h-[16px] mb-[16px]"> </div>
Expand Down
1 change: 1 addition & 0 deletions src/ui/views/SendToken/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1620,6 +1620,7 @@ const SendToken = () => {
}}
gasList={gasList}
visible={reserveGasOpen}
rawHexBalance={currentToken.raw_amount_hex_str}
onClose={(gasLevel) => handleGasLevelChanged(gasLevel)}
/>
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/ui/views/Swap/Component/ReserveGasPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ export const SendReserveGasPopup = (
onGasChange,
limit,
selectedItem,
rawHexBalance,
onClose,
onCancel,
...otherPopupProps
Expand Down Expand Up @@ -297,6 +298,7 @@ export const SendReserveGasPopup = (
limit={limit}
selectedItem={selectedItem}
onGasChange={onGasChange}
rawHexBalance={rawHexBalance}
/>
)}
</Popup>
Expand Down

0 comments on commit dc08706

Please sign in to comment.