Skip to content

Commit 28d45f7

Browse files
removed console logs
1 parent 18d85f0 commit 28d45f7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/app/api/ai-upload/route.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export async function POST(req: Request) {
5151
}
5252
}
5353
const tags = await processAndAnalyze({ imageURL });
54-
console.log(" tags:", tags);
5554

5655
const finalTags = await setTagsFromCurrentLists(tags);
5756
console.log("Final tags:", finalTags);
@@ -278,7 +277,6 @@ async function setTagsFromCurrentLists(
278277
if (semesterSearchResult) {
279278
newTags.semester = semesterSearchResult as SemesterType;
280279
}
281-
console.log(tags.year, years)
282280
const yearSearchResult = findMatch(years, tags.year);
283281
if (yearSearchResult) {
284282
newTags.year = yearSearchResult;

0 commit comments

Comments
 (0)