Skip to content

Commit

Permalink
chore: remove log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
HrithikSampson committed Oct 3, 2024
1 parent 422b4c9 commit d7c2c1f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export const QfRoundSelector: FC<IQfRoundSelectorProps> = ({
const sortedRounds =
projectData?.qfRounds?.sort((a: IQFRound, b: IQFRound) => {
const activeFirstCompare = Number(b.isActive) - Number(a.isActive);
console.log(a.beginDate, b.beginDate);
if (activeFirstCompare === 0) {
return new Date(b.beginDate) > new Date(a.beginDate) ? 1 : -1;
}
Expand Down

0 comments on commit d7c2c1f

Please sign in to comment.