removed debug logging

This commit is contained in:
2024-01-10 21:38:21 +01:00
parent 762aebf820
commit 64b192c4c2
3 changed files with 0 additions and 8 deletions

View File

@@ -82,7 +82,5 @@ export const fetchAvailableYears = withUser(async (user:AuthenticatedUser) => {
// sort the years in descending order
const sortedYears = years.sort((a, b) => b - a);
console.log("sortedYears", sortedYears);
return(sortedYears);
})