Skip to content

Commit

Permalink
fix: stop casting released to number in getGameInfoAndUserProgress.…
Browse files Browse the repository at this point in the history
…test (#93)
  • Loading branch information
mccxiv authored May 17, 2024
1 parent d800f9f commit b8b7a9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/user/getGameInfoAndUserProgress.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe("Function: getGameInfoAndUserProgress", () => {
publisher: "Activision ",
developer: "David Crane",
genre: "Racing",
released: 1980,
released: "1980",
isFinal: false,
consoleName: "Atari 2600",
richPresencePatch: "2b92fa1bf9635c303b3b7f8feea3ed3c",
Expand Down
3 changes: 1 addition & 2 deletions src/user/getGameInfoAndUserProgress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import type {
* publisher: "Activision",
* developer: "David Crane",
* genre: "Racing",
* released: 1980,
* released: "1980",
* isFinal: false,
* consoleName: "Atari 2600",
* richPresencePatch: "2b92fa1bf9635c303b3b7f8feea3ed3c",
Expand Down Expand Up @@ -113,7 +113,6 @@ export const getGameInfoAndUserProgress = async (
"DisplayOrder",
"NumDistinctPlayersCasual",
"NumDistinctPlayersHardcore",
"Released",
],
});
};

0 comments on commit b8b7a9e

Please sign in to comment.