AquaNet: Added an Error Message trigger to pages that didn't telegraph to the user that there was an error before.

This commit is contained in:
Galexion
2024-02-29 22:48:41 -05:00
parent 88b7804123
commit c4309aa14c
5 changed files with 45 additions and 16 deletions

View File

@@ -129,7 +129,7 @@ export const GAME = {
userSummary: (username: string, game: GameName): Promise<GenericGameSummary> =>
post(`/api/v2/game/${game}/user-summary`, { username }),
ranking: (game: GameName): Promise<GenericRanking[]> =>
post(`/api/v2/game/${game}/ranking`, { }),
post(`/api/v2/game/${game}/ranking`, { }),
}