Skip to content

Commit

Permalink
Confirm recovery -> execute recovery
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Sep 20, 2024
1 parent a6d17e8 commit bb10861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const RecoveryAttemptReview = ({ item }: RecoveryAttemptReviewProps) => {
<TxCard>
<form onSubmit={onFormSubmit}>
<Stack gap={3} mb={2}>
<Typography>Confirm this recovery attempt within the review time window.</Typography>
<Typography>Execute this transaction to finalize the recovery.</Typography>

<FieldsGrid title="Initiator">
<EthHashInfo address={item.executor} showName showCopyButton hasExplorer />
Expand Down
2 changes: 1 addition & 1 deletion src/components/tx-flow/flows/RecoveryAttempt/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { RecoveryQueueItem } from '@/features/recovery/services/recovery-st

const RecoveryAttemptFlow = ({ item }: { item: RecoveryQueueItem }) => {
return (
<TxLayout title="Recovery" subtitle="Confirm recovery" icon={SaveAddressIcon} step={0}>
<TxLayout title="Recovery" subtitle="Execute recovery" icon={SaveAddressIcon} step={0}>
<RecoveryAttemptReview item={item} />
</TxLayout>
)
Expand Down

0 comments on commit bb10861

Please sign in to comment.