1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

Removing register component changes.

This commit is contained in:
Alec Rippberger
2024-10-10 15:08:03 -05:00
parent 9b2032238c
commit 75330897d1
3 changed files with 5 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
import { Component, Input, OnInit, OnDestroy } from "@angular/core";
import { Component, Input, OnInit } from "@angular/core";
import { UntypedFormBuilder } from "@angular/forms";
import { Router } from "@angular/router";
@@ -27,7 +27,7 @@ import { AcceptOrganizationInviteService } from "../organization-invite/accept-o
selector: "app-register-form",
templateUrl: "./register-form.component.html",
})
export class RegisterFormComponent extends BaseRegisterComponent implements OnInit, OnDestroy {
export class RegisterFormComponent extends BaseRegisterComponent implements OnInit {
@Input() queryParamEmail: string;
@Input() queryParamFromOrgInvite: boolean;
@Input() enforcedPolicyOptions: MasterPasswordPolicyOptions;