diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts index f79c217e8..5f523c5df 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts @@ -147,7 +147,7 @@ export class AllocationsPageComponent implements OnDestroy, OnInit { }; this.positionsArray.push(position); - if(this.symbols[symbol] === undefined) { + if (this.symbols[symbol] === undefined) { this.symbols[symbol] = { name: symbol, value: position.value }; } else { this.symbols[symbol].value += position.value;