Skip to content

Commit

Permalink
fix: change console.info to console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Hachi-R committed Jan 2, 2025
1 parent f3d617a commit 257a71d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/events/library/reset-game-achievements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ const resetGameAchievements = async (
);

await HydraApi.delete(`/profile/games/${game.remoteId}/achievements`).then(
(res) => console.info(res));
(res) => console.log(res)
);

const gameAchievements = await getUnlockedAchievements(
game.objectID,
Expand Down

0 comments on commit 257a71d

Please sign in to comment.