diff --git a/src/app/degree-planner/degree-planner.component.ts b/src/app/degree-planner/degree-planner.component.ts index 3509039011ad4f4f5d5032fa9685c5ab96eedbc9..54939e52bf39d98b0f06cb7d990c98f2e8857b7d 100644 --- a/src/app/degree-planner/degree-planner.component.ts +++ b/src/app/degree-planner/degree-planner.component.ts @@ -252,7 +252,6 @@ export class DegreePlannerComponent implements OnInit { } } } - // console.log(termCodes); return termCodes; } diff --git a/src/app/degree-planner/dialogs/remove-course-confirm-dialog/remove-course-confirm-dialog.component.ts b/src/app/degree-planner/dialogs/remove-course-confirm-dialog/remove-course-confirm-dialog.component.ts index 29a94e44ef5113b0dcfc736c83e5cc9b33781c4b..115fe8c0bc1b29d2d0ec7011b75599143247a057 100644 --- a/src/app/degree-planner/dialogs/remove-course-confirm-dialog/remove-course-confirm-dialog.component.ts +++ b/src/app/degree-planner/dialogs/remove-course-confirm-dialog/remove-course-confirm-dialog.component.ts @@ -31,12 +31,9 @@ export class RemoveCourseConfirmDialogComponent implements OnInit { removeCourse() { switch (this.type) { case 'saved': - console.log('remove course from saved'); break; case 'course': - console.log('remove course from term'); - console.log(this.course); const id = this.course.id; if (typeof id === 'number') { const fromTermCode = this.termCodeService.fromString( diff --git a/src/app/degree-planner/shared/course-item/course-item.component.ts b/src/app/degree-planner/shared/course-item/course-item.component.ts index b3e2b251c69885b5855de300c7c9fd8790a6af0e..27fd3b2016c8b3da31c47b56ea528a689e3cc0be 100644 --- a/src/app/degree-planner/shared/course-item/course-item.component.ts +++ b/src/app/degree-planner/shared/course-item/course-item.component.ts @@ -272,14 +272,6 @@ export class CourseItemComponent implements OnInit { .subscribe((result: { confirmed: boolean }) => { // If the user confirmed the removal, remove course if (result && result.confirmed) { - console.log(this.type); - - console.log({ - type: this.type, - fromTermCode: this.course.termCode, - recordId: this.course.id, - }); - switch (this.type) { case 'course': this.store.dispatch( diff --git a/src/app/degree-planner/store/effects/plan.effects.ts b/src/app/degree-planner/store/effects/plan.effects.ts index dc891eb6c05e433de920a918094955805ad56b86..0e16e1f7955f3113242a707445d699eaa809ccd8 100644 --- a/src/app/degree-planner/store/effects/plan.effects.ts +++ b/src/app/degree-planner/store/effects/plan.effects.ts @@ -59,7 +59,6 @@ export class DegreePlanEffects { ofType(ROOT_EFFECTS_INIT), // Load the list of degree plans and data used by all degree plans. flatMap(() => { - console.log('loading all degree plans'); return forkJoinWithKeys({ allDegreePlans: this.api.getAllDegreePlans(), activeTermCodes: this.api.getActiveTermCodes(),