diff --git a/cypress/e2e/10_payBounty.cy.ts b/cypress/e2e/10_payBounty.cy.ts index 995985b6..566421e1 100644 --- a/cypress/e2e/10_payBounty.cy.ts +++ b/cypress/e2e/10_payBounty.cy.ts @@ -68,7 +68,7 @@ describe('It Pays a bounty ', () => { cy.contains('Confirm').click({ force: true }); cy.wait(1000); - cy.contains('Successful keysend payment'); + cy.contains('Paid successfully'); // close the bounty cy.get('body').click(0, 0); diff --git a/src/people/widgetViews/summaries/wantedSummaries/CodingBounty.tsx b/src/people/widgetViews/summaries/wantedSummaries/CodingBounty.tsx index c6304f71..f1a85982 100644 --- a/src/people/widgetViews/summaries/wantedSummaries/CodingBounty.tsx +++ b/src/people/widgetViews/summaries/wantedSummaries/CodingBounty.tsx @@ -149,7 +149,7 @@ function MobileView(props: CodingBountiesProps) { return setToasts([ { id: `${toastId}`, - title: 'Keysend payment failed', + title: 'Payment failed', toastLifeTimeMs: 10000, color: 'error' } @@ -159,7 +159,7 @@ function MobileView(props: CodingBountiesProps) { return setToasts([ { id: `${toastId}`, - title: 'Successful keysend payment', + title: 'Paid successfully', color: 'success' } ]);