mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
fix implicit any
This commit is contained in:
@@ -16,7 +16,7 @@ export class PasswordBossJsonImporter extends BaseImporter implements Importer {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
results.forEach((value) => {
|
results.forEach((value: any) => {
|
||||||
const cipher = this.initLoginCipher();
|
const cipher = this.initLoginCipher();
|
||||||
cipher.name = this.getValueOrDefault(value.name, '--');
|
cipher.name = this.getValueOrDefault(value.name, '--');
|
||||||
cipher.login.uris = this.makeUriArray(value.login_url);
|
cipher.login.uris = this.makeUriArray(value.login_url);
|
||||||
|
|||||||
Reference in New Issue
Block a user