Fix budget deletion not working

This commit is contained in:
William Brawner 2020-12-03 16:54:22 -07:00
parent 2a7fa456e4
commit 271bd20707

View file

@ -47,8 +47,10 @@ export class AddEditBudgetComponent {
delete(): void {
this.isLoading = true;
this.twigsService.deleteBudget(this.budget.id);
this.app.goBack();
this.twigsService.deleteBudget(this.budget.id)
.subscribe(() => {
this.app.goBack();
});
}
// TODO: Implement a search box with suggestions to add users