Fix grammatical error in balance command
This commit is contained in:
parent
c50ea5f2c5
commit
c485304627
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ const getAccountBalanceDescription = (
|
|||
) => {
|
||||
let description = `${
|
||||
isUserCheckAccount ? "You" : checkAccount
|
||||
} currently have ${creditAccount.balance} credits. 💰\n\n`;
|
||||
} currently ${ isUserCheckAccount ? "have" : "has" } ${creditAccount.balance} credits. 💰\n\n`;
|
||||
|
||||
if (creditAccount.balance === 0) {
|
||||
description += `${possessivePronoun} wallet is empty. Encourage ${
|
||||
|
|
Loading…
Add table
Reference in a new issue