Browse Source

Improve wording

pull/1479/head
Thomas 3 years ago
parent
commit
0e19195aa9
  1. 4
      apps/api/src/models/rules/account-cluster-risk/single-account.ts

4
apps/api/src/models/rules/account-cluster-risk/single-account.ts

@ -19,13 +19,13 @@ export class AccountClusterRiskSingleAccount extends Rule<RuleSettings> {
if (accounts.length === 1) {
return {
evaluation: `All your investment is managed by a single account`,
evaluation: `Your net worth is managed by a single account`,
value: false
};
}
return {
evaluation: `Your investment is managed by ${accounts.length} accounts`,
evaluation: `Your net worth is managed by ${accounts.length} accounts`,
value: true
};
}

Loading…
Cancel
Save