diff options
author | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-03-18 17:10:10 -0400 |
---|---|---|
committer | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-03-18 17:10:10 -0400 |
commit | 0268894e5b80c908d2c3eb5c2228ee22fde52904 (patch) | |
tree | e87d2878445fadbe74ac935640bd9934882d4bb3 /ufund-ui/src/app/components/cupboard/cupboard.component.ts | |
parent | ca7d72e43407a49b147673ebc5ab8b155a8216ac (diff) | |
download | JellySolutions-0268894e5b80c908d2c3eb5c2228ee22fde52904.tar.gz JellySolutions-0268894e5b80c908d2c3eb5c2228ee22fde52904.tar.bz2 JellySolutions-0268894e5b80c908d2c3eb5c2228ee22fde52904.zip |
cleaned up outputs. -ak
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.ts b/ufund-ui/src/app/components/cupboard/cupboard.component.ts index 13eddad..24b3e2d 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.ts +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.ts @@ -106,7 +106,6 @@ export class CupboardComponent implements OnInit { console.log(need.id, need, "need updated"); this.cupboardService.updateNeed(need.id, need) .pipe(catchError((ex, r) => { - console.log(ex.status); if (ex.status == 500) { this.statusText.next("Fields cannot be blank"); } else if (ex.status == 400) { @@ -142,7 +141,6 @@ export class CupboardComponent implements OnInit { console.log("form submitted. creating need: ", need); this.cupboardService.createNeed(need) .pipe(catchError((ex, r) => { - console.log(ex.status); if (ex.status == 500) { this.statusText.next("Fields cannot be blank"); } else if (ex.status == 400) { |