[localization] add new message notInvolved in ExpenseCard

This commit is contained in:
scollovati
2025-07-23 15:22:23 +02:00
parent 6c995ebd54
commit a8ea05eae8
16 changed files with 31 additions and 16 deletions

View File

@@ -18,7 +18,7 @@ export function ActiveUserBalance({ groupId, currency, expense }: Props) {
}
const balances = getBalances([expense])
let fmtBalance = <>You are not involved</>
let fmtBalance = <>{t('notInvolved')}</>
if (Object.hasOwn(balances, activeUserId)) {
const balance = balances[activeUserId]
let balanceDetail = <></>