From d3552fa9c83e2db184af2912fbc1a6b2b7e4a214 Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Thu, 27 Jan 2022 21:00:19 +0100 Subject: [PATCH] Refactoring --- .../src/app/components/home-market/home-market.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/components/home-market/home-market.component.ts b/apps/client/src/app/components/home-market/home-market.component.ts index 5f93e11ee..37b31676f 100644 --- a/apps/client/src/app/components/home-market/home-market.component.ts +++ b/apps/client/src/app/components/home-market/home-market.component.ts @@ -16,11 +16,11 @@ import { takeUntil } from 'rxjs/operators'; templateUrl: './home-market.html' }) export class HomeMarketComponent implements OnDestroy, OnInit { - public numberOfDays = 90; public fearAndGreedIndex: number; public hasPermissionToAccessFearAndGreedIndex: boolean; public historicalData: HistoricalDataItem[]; public isLoading = true; + public readonly numberOfDays = 90; public user: User; private unsubscribeSubject = new Subject();