1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-23 11:56:00 +01:00

never domain is any

This commit is contained in:
Kyle Spearrin 2018-01-13 10:30:40 -05:00
parent 4077630a92
commit 0e5de1a914

View File

@ -268,7 +268,7 @@ export default class RuntimeBackground {
private async getDataForTab(tab: any, responseCommand: string) {
const responseVal: any = {};
if (responseCommand === 'notificationBarDataResponse') {
responseVal.neverDomains = await this.storageService.get<string[]>(ConstantsService.neverDomainsKey);
responseVal.neverDomains = await this.storageService.get<any>(ConstantsService.neverDomainsKey);
responseVal.disabledNotification = await this.storageService.get<boolean>(
ConstantsService.disableAddLoginNotificationKey);
} else if (responseCommand === 'autofillerAutofillOnPageLoadEnabledResponse') {