[SM-602] Fixing merge conflict, changing handleError to return ProjectView instead of deprecated ProjectPermissionDetailView (#5296)

This commit is contained in:
cd-bitwarden 2023-04-27 05:09:10 -04:00 committed by GitHub
parent ad40d508e8
commit 9ae4bdfef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ export class ProjectComponent implements OnInit, OnDestroy {
handleError = () => {
const projectsListUrl = `/sm/${this.organizationId}/projects/`;
this.router.navigate([projectsListUrl]);
return new ProjectPermissionDetailsView();
return new ProjectView();
};
ngOnDestroy(): void {