Skip to content
Snippets Groups Projects
Commit de263468 authored by Isaac Evavold's avatar Isaac Evavold
Browse files

ROENROLL-1700 remove more logging

parent 71b32c49
No related branches found
No related tags found
No related merge requests found
......@@ -233,11 +233,6 @@ export class DegreePlannerComponent implements OnInit {
});
}
public onSharePlanClick() {
// TODO
console.log('onSharePlanClick');
}
public getTermDropZone() {
const termCodes = ['favoriteCourse-dropZone'];
......
......@@ -141,10 +141,6 @@ export class RawTermCode {
throw new Error(`'${str}' is not a valid term code`);
}
if (typeof str !== 'string') {
console.log({ str });
}
this.yearCode = new RawYearCode(str.substr(0, 3));
this.termId = str.substr(3, 1) as RawTermCode['termId'];
}
......
......@@ -31,7 +31,6 @@ export class ErrorEffects {
const message = action.payload.message;
const err = action.payload.error;
this.snackBar.open(message);
console.error('(error)', err);
}),
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment