Yeray
Results
2
comments of
Yeray
I found a workaround: https://github.com/ramboxapp/community-edition/issues/2217#issuecomment-562023784
Y así? ```js response = fetch(`https://www.omdbapi.com/?s=${value}&apikey=api_key`) .then(res => res.ok ? res : new Error('Something bad happened with the fetching of movies')) .then(res => res.json()) .then(apiResponse => apiResponse.Search || []); ```