1
Fork 0

change api url :3

This commit is contained in:
ashley 2024-08-21 12:24:34 +00:00
parent acb2cd0db3
commit 599b5cac54

View file

@ -47,7 +47,7 @@ document.querySelector('input[type="search"]').addEventListener('input', functio
function GetResults() {
var SearchValue = document.querySelector('input[type="search"]').value
var YouTubeSuggestions = document.querySelector('.suggestions')
fetch(window.location.origin + `/api/improving-poke/getsugesstions?q=${SearchValue}`)
fetch(window.location.origin + `/api/improving-poke/suggestions?q=${SearchValue}`)
.then(response => response.json())
.then(data => {YouTubeSuggestions.innerHTML = ListOfSuggestionsYT(data)})
}