diff --git a/tampermonkey.js b/tampermonkey.js index 078ca10..cdba967 100644 --- a/tampermonkey.js +++ b/tampermonkey.js @@ -728,7 +728,7 @@ function injectOversight(countyId, action) { const rowCapInputIsBeingOverridden = settings_Presidence_GeneralCap; //TODO: write logic const rowCapInputShouldBeDisabled = (rowCapInputIsBeingOverridden || !rowCapCheckboxShouldBeChecked); //TODO: write logic - const trueCap = getTrueCap(isGeneralCapEnabled,) alwaysWinSettings.generalCap; //countyJson.bidCap; //TODO actually calcuate instead of reading from settings + const trueCap = alwaysWinSettings.generalCap; //countyJson.bidCap; //TODO actually calcuate instead of reading from settings //const trueCap = getTrueCap(isGeneralCapEnabled,isRowCapIsEnabled,presidenceValue,generalCapNum,rowCapNum); //TODO: Uncomment this line once I get the params right. const capIsCurrentlyBeingAppliedToBid = countyJson.bid > Number(trueCap); //End TODO