Skip to content

Commit

Permalink
AI scoring fallback updated
Browse files Browse the repository at this point in the history
  • Loading branch information
YosephSE committed Sep 17, 2024
1 parent 927a9aa commit eeff60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/utils/applicationScore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const applicationScore = async (application: any): Promise<number> => {
return Number.isNaN(score) ? 0 : score;
} catch (error) {
console.error(error);
return Math.floor(Math.random() * 100);
return 0;
}
};

Expand Down

0 comments on commit eeff60d

Please sign in to comment.