Skip to content

Commit

Permalink
fix: change to unlock wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeday committed Jul 11, 2024
1 parent 8ca6ef9 commit cf8e508
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion features/withdrawals/request/form/transaction-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const TransactionInfo = () => {
const token = useWatch<RequestFormInputType, 'token'>({ name: 'token' });
const { requests } = useValidationResults();
const unlockCostTooltip = isApprovalFlow ? undefined : (
<>Lido leverages gasless token approvals via ERC-2612 permits</>
<>Lido leverages gasless token unlocks via ERC-2612 permits</>
);
const { txPriceUsd: requestTxPriceInUsd, loading: requestTxPriceLoading } =
useRequestTxPrice({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type { TokensWithdrawable } from 'features/withdrawals/types/tokens-withd

const STAGE_APPROVE_ARGS = {
willReceiveToken: 'wstETH',
operationText: 'Approving',
operationText: 'Unlocking',
};

const STAGE_OPERATION_ARGS = {
Expand Down
2 changes: 1 addition & 1 deletion features/wsteth/wrap/hooks/use-tx-modal-stages-wrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type { TokensWrappable } from 'features/wsteth/shared/types';

const STAGE_APPROVE_ARGS = {
willReceiveToken: 'wstETH',
operationText: 'Approving',
operationText: 'Unlocking',
};

const STAGE_OPERATION_ARGS = {
Expand Down

0 comments on commit cf8e508

Please sign in to comment.