From 0e33ad9b0bd24e15000f817e554deedafd808541 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 24 Jan 2018 12:39:01 -0500 Subject: [PATCH] AnalyticsIds as any --- src/services/desktopPlatformUtils.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/services/desktopPlatformUtils.service.ts b/src/services/desktopPlatformUtils.service.ts index bac2a5bcfa..3483db74c7 100644 --- a/src/services/desktopPlatformUtils.service.ts +++ b/src/services/desktopPlatformUtils.service.ts @@ -66,8 +66,7 @@ export class DesktopPlatformUtilsService implements PlatformUtilsService { return this.analyticsIdCache; } - // FIX? - // this.analyticsIdCache = AnalyticsIds[this.getDevice() as DeviceType]; + this.analyticsIdCache = (AnalyticsIds as any)[this.getDevice()]; return this.analyticsIdCache; }