Fixed error to display score

This commit is contained in:
2026-03-28 18:30:23 +01:00
parent 1f8a0e1584
commit 95d46d7811
3 changed files with 4 additions and 6 deletions
@@ -64,5 +64,4 @@ export class FriendsListComponent implements OnInit {
}
}
//TODO : QUAND ON CLIQUE SUR UN JOUEUR ON PEUT VOIR SA PAGE (VAUT AUSSI POUR CLASSEMENT
//TODO: PB DE DISPLAY DE POINTS APRES AJOUT JE CROIS
//TODO : QUAND ON CLIQUE SUR UN JOUEUR ON PEUT VOIR SA PAGE (VAUT AUSSI POUR CLASSEMENT
+1 -3
View File
@@ -42,6 +42,4 @@ export class RankingComponent implements OnInit {
await toast.present();
}
}
}
//TODO: FAIRE NOS SERVICES POUR TOAST ET LOADING
}
+2 -1
View File
@@ -24,7 +24,8 @@ export class FriendsStateService {
...this.friends(),
{
friendId: request.userId,
username: request.username
username: request.username,
score: request.score
}
]);
}