diff --git a/src/importers/passwordBossJsonImporter.ts b/src/importers/passwordBossJsonImporter.ts index 843fcdfb1b1..2f6cf8f416c 100644 --- a/src/importers/passwordBossJsonImporter.ts +++ b/src/importers/passwordBossJsonImporter.ts @@ -16,7 +16,7 @@ export class PasswordBossJsonImporter extends BaseImporter implements Importer { return result; } - results.forEach((value) => { + results.forEach((value: any) => { const cipher = this.initLoginCipher(); cipher.name = this.getValueOrDefault(value.name, '--'); cipher.login.uris = this.makeUriArray(value.login_url);