diff --git a/src/routes/(app)/companies/[companyId]/accounts/+page.svelte b/src/routes/(app)/companies/[companyId]/accounts/+page.svelte index 7b5c5ce..7660860 100644 --- a/src/routes/(app)/companies/[companyId]/accounts/+page.svelte +++ b/src/routes/(app)/companies/[companyId]/accounts/+page.svelte @@ -767,6 +767,13 @@

{formatAmount(acct.balance, acct.currency)}

+ {#if acct.currency !== data.company.currency && acct.fxRateToBase} + {@const baseEquivalent = (Number(acct.balance) * Number(acct.fxRateToBase)).toFixed(2)} +

+ ≈ {formatAmount(baseEquivalent, data.company.currency)} + (@ {Number(acct.fxRateToBase)}) +

+ {/if} {#if acct.accountType === 'credit_card' && acct.creditLimit} {@const pct = utilisation(acct.balance, acct.creditLimit)}