diff --git a/app/reducers/transaction.js b/app/reducers/transaction.js index bfe25c3f..af68557f 100644 --- a/app/reducers/transaction.js +++ b/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) }