[F] Fix no data when a user hasn't played maimai

This commit is contained in:
Azalea
2024-03-14 21:47:39 -04:00
parent 71d7fcbe65
commit 50677ad81d
4 changed files with 47 additions and 22 deletions

View File

@@ -135,6 +135,8 @@ export const CARD = {
post('/api/v2/card/link', props),
unlink: (cardId: string) =>
post('/api/v2/card/unlink', { cardId }),
userGames: (username: string): Promise<CardSummary> =>
post('/api/v2/card/user-games', { username }),
}
export const GAME = {