diff --git a/libs/angular/src/vault/services/vault-profile.service.ts b/libs/angular/src/vault/services/vault-profile.service.ts index 3a8c9d4ee95..3977b275d02 100644 --- a/libs/angular/src/vault/services/vault-profile.service.ts +++ b/libs/angular/src/vault/services/vault-profile.service.ts @@ -21,6 +21,9 @@ export class VaultProfileService { * Returns the creation date of the profile. * Note: `Date`s are mutable in JS, creating a new * instance is important to avoid unwanted changes. + * + * @deprecated use `creationDate` directly from the `AccountService.activeAccount$` instead, + * PM-31409 will replace all usages of this service. */ async getProfileCreationDate(userId: string): Promise { if (this.profileCreatedDate && userId === this.userId) {