diff --git a/web/cashtab/src/hooks/useWallet.js b/web/cashtab/src/hooks/useWallet.js --- a/web/cashtab/src/hooks/useWallet.js +++ b/web/cashtab/src/hooks/useWallet.js @@ -735,7 +735,7 @@ {Number( balances.totalBalance - previousBalances.totalBalance, ).toFixed(currency.cashDecimals)}{' '} - BCH! + {currency.ticker}! ), duration: 3, @@ -987,13 +987,14 @@ // Best way to ignore this is to ignore any incoming utx.x with BCH or SLP address in the inputs - // Notification for received BCH + // Notification for received BCHA if (bchSatsReceived > 0) { notification.success({ message: 'Transaction received', description: ( - You received {bchSatsReceived / 1e8} BCH! + You received {bchSatsReceived / 1e8}{' '} + {currency.ticker}! ), duration: 3, @@ -1119,13 +1120,14 @@ // Best way to ignore this is to ignore any incoming utx.x with BCH or SLP address in the inputs - // Notification for received BCH + // Notification for received BCHA if (bchSatsReceived > 0) { notification.success({ message: 'Transaction received', description: ( - You received {bchSatsReceived / 1e8} BCH! + You received {bchSatsReceived / 1e8}{' '} + {currency.ticker}! ), duration: 3,