1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-21 02:11:54 +01: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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