From f61c4539708af08e3cb3f93534670ff552cddb31 Mon Sep 17 00:00:00 2001 From: HarelM Date: Wed, 14 Jun 2023 11:47:35 +0300 Subject: [PATCH] Remove unneeded todos. --- .../src/application/components/search.component.html | 1 - IsraelHiking.Web/src/application/services/purchase.service.ts | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/IsraelHiking.Web/src/application/components/search.component.html b/IsraelHiking.Web/src/application/components/search.component.html index 2b2791f8..c3663c3f 100644 --- a/IsraelHiking.Web/src/application/components/search.component.html +++ b/IsraelHiking.Web/src/application/components/search.component.html @@ -5,7 +5,6 @@ - {{result.displayName}} diff --git a/IsraelHiking.Web/src/application/services/purchase.service.ts b/IsraelHiking.Web/src/application/services/purchase.service.ts index 36b138ff..743e02c8 100644 --- a/IsraelHiking.Web/src/application/services/purchase.service.ts +++ b/IsraelHiking.Web/src/application/services/purchase.service.ts @@ -34,7 +34,6 @@ export class PurchaseService { } this.loggingService.info("[Store] Logged in: " + userInfo.id); this.initializeCdvStore(userInfo.id); - // HM TODO: remove this once we make sure the unverified is working as expected. this.offlineFilesDownloadService.isExpired().then((isExpired) => { if (isExpired) { this.loggingService.debug("[Store] Product is expired from server"); @@ -80,7 +79,7 @@ export class PurchaseService { } receipt.finish(); }); - CdvPurchase.store.verbosity = CdvPurchase.LogLevel.DEBUG; + CdvPurchase.store.verbosity = CdvPurchase.LogLevel.WARNING; await CdvPurchase.store.initialize(); }