Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/ReviewInfoText/ReviewInfoText.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('<ReviewInfoText>', () => {

expect(screen.getByText(/6/)).toBeInTheDocument()
expect(screen.getByText(/9/)).toBeInTheDocument()
expect(screen.getByText(/is below the latest transaction's nonce./)).toBeInTheDocument()
expect(screen.getByText(/Your transaction might fail./)).toBeInTheDocument()
expect(screen.getByText(/is below the latest transaction's nonce in your queue./)).toBeInTheDocument()
expect(screen.getByText(/Please verify the submitted nonce./)).toBeInTheDocument()
})
})
3 changes: 2 additions & 1 deletion src/components/ReviewInfoText/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ export const ReviewInfoText = ({
/* tx in the past */ <>
Nonce&nbsp;
<b>{safeTxNonce}</b>
&nbsp;is below the latest transaction&apos;s nonce. Your transaction might fail. Please use nonce&nbsp;
&nbsp;is below the latest transaction&apos;s nonce in your queue. Please verify the submitted nonce. The
next recommended nonce is &nbsp;
<b>{recommendedNonce}</b>.
</>
)}
Expand Down