diff --git a/javascript/JS_Esercizi 11 - API/03_utente_e_post/index.html b/javascript/JS_Esercizi 11 - API/03_utente_e_post/index.html
index 8f2e5d1..e60063c 100644
--- a/javascript/JS_Esercizi 11 - API/03_utente_e_post/index.html
+++ b/javascript/JS_Esercizi 11 - API/03_utente_e_post/index.html
@@ -32,29 +32,6 @@
-
-
-
-
๐ Istruzioni
-
- - Apri
script.js e completa fetchUserAndPosts()
- - Compila
BASE_URL
- - Fai due fetch:
/users/{id} e /posts
- - Usa
filter() per relazionare i dati
-
-
-
-
๐ก Suggerimento:
-
const user = await fetch(...);
-const allPosts = await fetch(...);
-const userPosts = allPosts.filter(post => post.userId === user.id);
-
-
-
-
๐ฏ Bonus Challenge:
-
Ordina i post dal piรน recente al meno recente usando sort().
-
-
diff --git a/javascript/JS_Esercizi 11 - API/03_utente_e_post/script.js b/javascript/JS_Esercizi 11 - API/03_utente_e_post/script.js
index f8d0f38..30ec8ec 100644
--- a/javascript/JS_Esercizi 11 - API/03_utente_e_post/script.js
+++ b/javascript/JS_Esercizi 11 - API/03_utente_e_post/script.js
@@ -117,6 +117,8 @@ function handleError(message) {
* 8. Gestisci gli errori con handleError()
*/
async function fetchUserAndPosts() {
+ // TODO Rimuovi questa riga e completa la funzione
+ handleError('Codice non implementato - Completa la funzione fetchUserAndPosts()');
}