diff --git a/libs/common/src/platform/services/crypto.service.ts b/libs/common/src/platform/services/crypto.service.ts index 60081460e9a..ca95091cd76 100644 --- a/libs/common/src/platform/services/crypto.service.ts +++ b/libs/common/src/platform/services/crypto.service.ts @@ -915,8 +915,7 @@ export class CryptoService implements CryptoServiceAbstraction { ); } - // Not exposing this until there is a need - private userPublicKey$(userId: UserId) { + userPublicKey$(userId: UserId) { return this.userPrivateKey$(userId).pipe( switchMap(async (pk) => await this.derivePublicKey(pk)), );