Skip to content

Commit

Permalink
fix: update button disabled state logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Hachi-R committed Jan 3, 2025
1 parent 93b86f8 commit 29ba0cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export function GameOptionsModal({
<Button
onClick={() => setShowResetAchievementsModal(true)}
theme="danger"
disabled={isGameDownloading || deleting || isDeleting}
disabled={deleting || isDeleting}
>
{t("reset_achievements")}
</Button>
Expand Down

0 comments on commit 29ba0cc

Please sign in to comment.