Skip to content

Commit

Permalink
Merge pull request stakwork#430 from stakwork/feat/change_keysend_msg
Browse files Browse the repository at this point in the history
Changed successful keysend payment message.
  • Loading branch information
elraphty authored Mar 18, 2024
2 parents 4ad6121 + bac6154 commit 3ca1daa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/10_payBounty.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function MobileView(props: CodingBountiesProps) {
return setToasts([
{
id: `${toastId}`,
title: 'Keysend payment failed',
title: 'Payment failed',
toastLifeTimeMs: 10000,
color: 'error'
}
Expand All @@ -159,7 +159,7 @@ function MobileView(props: CodingBountiesProps) {
return setToasts([
{
id: `${toastId}`,
title: 'Successful keysend payment',
title: 'Paid successfully',
color: 'success'
}
]);
Expand Down

0 comments on commit 3ca1daa

Please sign in to comment.