We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d85f0 commit 28d45f7Copy full SHA for 28d45f7
src/app/api/ai-upload/route.ts
@@ -51,7 +51,6 @@ export async function POST(req: Request) {
51
}
52
53
const tags = await processAndAnalyze({ imageURL });
54
- console.log(" tags:", tags);
55
56
const finalTags = await setTagsFromCurrentLists(tags);
57
console.log("Final tags:", finalTags);
@@ -278,7 +277,6 @@ async function setTagsFromCurrentLists(
278
277
if (semesterSearchResult) {
279
newTags.semester = semesterSearchResult as SemesterType;
280
281
- console.log(tags.year, years)
282
const yearSearchResult = findMatch(years, tags.year);
283
if (yearSearchResult) {
284
newTags.year = yearSearchResult;
0 commit comments