Remove redundant debugging

This commit is contained in:
2025-07-12 22:46:08 +05:00
parent 4c031e3798
commit 4afcf69f0d

View File

@ -15,7 +15,6 @@ watchEffect(async () => {
try {
isLoading.value = true
error.value = null
console.log("SEARCHING")
const response = await search({ title: searchQuery.value })
results.value = response.data.results || []
} catch (err) {