From 39ed7ea83cd80635b294b06c86ece85bac3d3d61 Mon Sep 17 00:00:00 2001 From: Ajay Date: Fri, 2 Sep 2022 14:26:41 -0400 Subject: [PATCH] Fix license code box --- src/upsell.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/upsell.ts b/src/upsell.ts index faa94a1d..7ea7f277 100644 --- a/src/upsell.ts +++ b/src/upsell.ts @@ -23,8 +23,9 @@ async function init() { cantAfford.appendChild(document.createTextNode(cantAffordTexts[2])); const redeemButton = document.getElementById("redeemButton") as HTMLInputElement; + const redeemInput = document.getElementById("redeemCodeInput") as HTMLInputElement; redeemButton.addEventListener("click", async () => { - const licenseKey = redeemButton.value; + const licenseKey = redeemInput.value; if (await checkLicenseKey(licenseKey)) { Config.config.payments.licenseKey = licenseKey;