1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

analytics id as any

This commit is contained in:
Kyle Spearrin 2018-01-24 12:24:31 -05:00
parent 9c25e2a123
commit 6a22410a60

View File

@ -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;
}