From 6a22410a604ae7eab6f008ded4030d1553ab5d42 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 24 Jan 2018 12:24:31 -0500 Subject: [PATCH] analytics id as any --- src/services/browserPlatformUtils.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/browserPlatformUtils.service.ts b/src/services/browserPlatformUtils.service.ts index 98493bdacd..7c0fad2dc3 100644 --- a/src/services/browserPlatformUtils.service.ts +++ b/src/services/browserPlatformUtils.service.ts @@ -113,7 +113,7 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService return this.analyticsIdCache; } - this.analyticsIdCache = AnalyticsIds[this.getDevice()]; + this.analyticsIdCache = (AnalyticsIds as any)[this.getDevice()]; return this.analyticsIdCache; }