diff --git a/explorer/src/components/Delegations/DelegateModal.tsx b/explorer/src/components/Delegations/DelegateModal.tsx index 3fb9a34ec7..f5c27adccb 100644 --- a/explorer/src/components/Delegations/DelegateModal.tsx +++ b/explorer/src/components/Delegations/DelegateModal.tsx @@ -99,7 +99,7 @@ export const DelegateModal: FCWithChildren<{ onOk({ status: 'success', - message: 'This operation can take up to one hour to process', + message: 'Delegation can take up to one hour to process', transactions: [ { url: `${urls('MAINNET').blockExplorer}/transaction/${tx.transactionHash}`, hash: tx.transactionHash }, ], diff --git a/explorer/src/components/Delegations/DelegationModal.tsx b/explorer/src/components/Delegations/DelegationModal.tsx index 6e00092eac..db5b51aefe 100644 --- a/explorer/src/components/Delegations/DelegationModal.tsx +++ b/explorer/src/components/Delegations/DelegationModal.tsx @@ -42,7 +42,12 @@ export const DelegationModal: FCWithChildren< } return ( - {})} title="Delegation successful" confirmButton="Done"> + {})} + title="Transaction successful" + confirmButton="Done" + > {message && {message}} {transactions?.length === 1 && ( diff --git a/explorer/src/pages/Delegations/index.tsx b/explorer/src/pages/Delegations/index.tsx index 9e5d1f6516..f4a8e901de 100644 --- a/explorer/src/pages/Delegations/index.tsx +++ b/explorer/src/pages/Delegations/index.tsx @@ -81,7 +81,7 @@ const DelegationsPage = () => { if (tx) { setConfirmationModalProps({ status: 'success', - message: 'Undelegation successful', + message: 'Undelegation can take up to one hour to process', transactions: [ { url: `${urls('MAINNET').blockExplorer}/transaction/${tx.transactionHash}`, hash: tx.transactionHash }, ],