diff --git a/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts b/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts index 63a59737f6..c3687cda30 100644 --- a/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts +++ b/libs/importer/src/components/lastpass/lastpass-direct-import.service.ts @@ -137,7 +137,9 @@ export class LastPassDirectImportService { includeSharedFolders: boolean ): Promise { const clientInfo = await this.createClientInfo(email); - await this.vault.open(email, password, clientInfo, this.lastPassDirectImportUIService); + await this.vault.open(email, password, clientInfo, this.lastPassDirectImportUIService, { + parseSecureNotesToAccount: false, + }); return this.vault.accountsToExportedCsvString(!includeSharedFolders); } @@ -159,7 +161,9 @@ export class LastPassDirectImportService { federatedUser.username = userState.email; const clientInfo = await this.createClientInfo(federatedUser.username); - await this.vault.openFederated(federatedUser, clientInfo, this.lastPassDirectImportUIService); + await this.vault.openFederated(federatedUser, clientInfo, this.lastPassDirectImportUIService, { + parseSecureNotesToAccount: false, + }); return this.vault.accountsToExportedCsvString(!includeSharedFolders); }