diff --git a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts index aae5e5f5e..1d2323676 100644 --- a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts +++ b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts @@ -81,9 +81,11 @@ export class PortfolioPerformanceComponent implements OnChanges, OnInit { } public onShowErrors() { - const errorMessageParts = this.errors.map((error) => { - return `${error.symbol} (${error.dataSource})`; - }); + const errorMessageParts = ['Data Provider Errors for']; + + for (const error of this.errors) { + errorMessageParts.push(`${error.symbol} (${error.dataSource})`); + } alert(errorMessageParts.join('\n')); }