Browse Source

fix(notification): copy change

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
688aa45a78
  1. 2
      app/reducers/transaction.js

2
app/reducers/transaction.js

@ -73,7 +73,7 @@ export const newTransaction = (event, { transaction }) => (dispatch) => {
// HTML 5 desktop notification for the new transaction
const notifTitle = transaction.amount > 0 ? `On-chain Transaction Received!` : `On-chain Transaction Sent!`
const notifBody = transaction.amount > 0 ? `Lucky you, you just received a new on-chain transaction. I'm jealous.` : `Hate to see em' go but love to watch em' leave. Your on-chain transaction successfully sent.`
const notifBody = transaction.amount > 0 ? `Lucky you, you just received a new on-chain transaction. I'm jealous.` : `Hate to see 'em go but love to watch 'em leave. Your on-chain transaction successfully sent.`
showNotification(notifTitle, notifBody)
}

Loading…
Cancel
Save