From 5f9ec4dfbfcb55c04c988612d8492974a1cb653b Mon Sep 17 00:00:00 2001 From: Oleg Shvartsman Date: Tue, 2 May 2023 15:58:59 +0000 Subject: [PATCH] Formatting/spelling --- apps/api/src/app/portfolio/current-rate.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/api/src/app/portfolio/current-rate.service.ts b/apps/api/src/app/portfolio/current-rate.service.ts index 94e74fc66..a17bdf57d 100644 --- a/apps/api/src/app/portfolio/current-rate.service.ts +++ b/apps/api/src/app/portfolio/current-rate.service.ts @@ -70,11 +70,11 @@ export class CurrentRateService { symbol: dataGatheringItem.symbol }); } - if (result.length == 1) { + if (result.length == 1) { // getValues result of size 1 ("today only") means historical data is not - // synchromized. Queue up sync so that a refresh would pull more historical data. + // synchronized. Queue up sync so that a refresh would pull more historical data. this.dataGatheringService.gather7Days(); - } + } return result; })