mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
Creates a refreshed and consolidated LoginViaAuthRequestComponent for use on all visual clients, which will be used when the UnauthenticatedExtensionUIRefresh feature flag is on.
10 lines
411 B
TypeScript
10 lines
411 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { LoginViaAuthRequestComponentV1 as BaseLoginViaAuthRequestComponentV1 } from "@bitwarden/angular/auth/components/login-via-auth-request-v1.component";
|
|
|
|
@Component({
|
|
selector: "app-login-via-auth-request",
|
|
templateUrl: "login-via-auth-request-v1.component.html",
|
|
})
|
|
export class LoginViaAuthRequestComponentV1 extends BaseLoginViaAuthRequestComponentV1 {}
|