diff --git a/src/components/ReviewInfoText/ReviewInfoText.test.tsx b/src/components/ReviewInfoText/ReviewInfoText.test.tsx index a66255493e..bee1612902 100644 --- a/src/components/ReviewInfoText/ReviewInfoText.test.tsx +++ b/src/components/ReviewInfoText/ReviewInfoText.test.tsx @@ -66,7 +66,7 @@ describe('', () => { 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() }) }) diff --git a/src/components/ReviewInfoText/index.tsx b/src/components/ReviewInfoText/index.tsx index 20adc61bb0..268f724e41 100644 --- a/src/components/ReviewInfoText/index.tsx +++ b/src/components/ReviewInfoText/index.tsx @@ -59,7 +59,8 @@ export const ReviewInfoText = ({ /* tx in the past */ <> Nonce  {safeTxNonce} -  is below the latest transaction's nonce. Your transaction might fail. Please use nonce  +  is below the latest transaction's nonce in your queue. Please verify the submitted nonce. The + next recommended nonce is   {recommendedNonce}. )}