Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
noahstreller committed Jan 10, 2025
1 parent 664240e commit 03538de
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/services/notAsyncLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export function doesGradePass(
preferences: Preferences,
simulatedGoalGrade?: number | Empty
): boolean {
console.log("doesGradePass", grade, preferences, simulatedGoalGrade);
const passing = simulatedGoalGrade || preferences?.passingGrade!;
if (preferences.passingInverse) {
return grade <= passing;
Expand Down

0 comments on commit 03538de

Please sign in to comment.