Skip to content

Commit

Permalink
Merge pull request #1841 from DSD-DBS/project-deletion
Browse files Browse the repository at this point in the history
fix(frontend): Make project deletion working again
  • Loading branch information
MoritzWeber0 authored Sep 25, 2024
2 parents a97f2df + c15874e commit b3b658b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/projects/service/project.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class ProjectWrapperService {
}

deleteProject(projectSlug: string): Observable<void> {
return this.deleteProject(projectSlug).pipe(
return this.projectsService.deleteProject(projectSlug).pipe(
tap(() => {
this.loadProjects();
this._project.next(undefined);
Expand Down

0 comments on commit b3b658b

Please sign in to comment.