1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

feat(new-device-verification-screen): (Auth) [PM-17489] Back Button on New Device Verification Screen (#16599)

On Web and Desktop, show back button on `NewDeviceVerificationComponent` (route `/device-verification`). Do not show it on Extension, because Extension already has a back button in the header.
This commit is contained in:
rr-bw
2025-10-01 12:57:41 -07:00
committed by GitHub
parent 420b26776b
commit cae58232e5
10 changed files with 109 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
import { NewDeviceVerificationComponentService } from "./new-device-verification-component.service";
export class DefaultNewDeviceVerificationComponentService
implements NewDeviceVerificationComponentService
{
showBackButton() {
return true;
}
}