Skip to content

Commit

Permalink
Fixed gift checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
thommcgrath committed Dec 18, 2024
1 parent e6d3000 commit 0475b47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Website/src/js/checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ document.addEventListener('beaconRunCheckout', ({checkoutProperties}) => {
gameStatus.ArkSA = this.arkSACheck && this.arkSACheck.disabled === false && this.arkSACheck.checked ? StatusBuying : StatusNone;
for (const game of OtherGamesList) {
const lowerGameId = game.gameId.toLowerCase();
gameStatus[gameId] = (this[`${lowerGameId}Check`] && this[`${lowerGameId}Check`].disabled === false && this[`${lowerGameId}Check`].checked) ? StatusBuying : StatusNone;
gameStatus[game.gameId] = (this[`${lowerGameId}Check`] && this[`${lowerGameId}Check`].disabled === false && this[`${lowerGameId}Check`].checked) ? StatusBuying : StatusNone;
}
} else {
if (cart.arkLicense) {
Expand Down
Loading

0 comments on commit 0475b47

Please sign in to comment.