feature/search-prototype #1

Merged
bivashy merged 10 commits from feature/search-prototype into main 2025-07-19 18:05:52 +00:00
35 changed files with 2101 additions and 226 deletions
Showing only changes of commit 4afcf69f0d - Show all commits

View File

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