1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

PM-15569 return user to settings page after exporting vault (#13067)

This commit is contained in:
Graham Walker
2025-02-07 12:12:58 -06:00
committed by GitHub
parent 95ef2f523c
commit 1bf917c08a

View File

@@ -34,6 +34,6 @@ export class ExportBrowserV2Component {
constructor(private router: Router) {} constructor(private router: Router) {}
protected async onSuccessfulExport(organizationId: string): Promise<void> { protected async onSuccessfulExport(organizationId: string): Promise<void> {
await this.router.navigate(["/vault-settings"]); await this.router.navigate(["/tabs/settings"]);
} }
} }