mirror of
https://github.com/bitwarden/browser
synced 2026-02-21 11:54:02 +00:00
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.
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
import { NewDeviceVerificationComponentService } from "./new-device-verification-component.service";
|
|
|
|
export class DefaultNewDeviceVerificationComponentService
|
|
implements NewDeviceVerificationComponentService
|
|
{
|
|
showBackButton() {
|
|
return true;
|
|
}
|
|
}
|