Skip to content

Commit

Permalink
Merge pull request #233 from ucdavis/KL/commentOutCarbonCredit
Browse files Browse the repository at this point in the history
comment out carbon credit for now
  • Loading branch information
kaiyanl authored Apr 15, 2022
2 parents a8ffa9c + 77e682a commit 2bed6bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const GasificationPower = (props: Props) => {
}
disabled={props.disabled}
/>
<CarbonCreditInput
{/* <CarbonCreditInput
inputs={props.inputs.CarbonCredit}
setInputs={(inputs: CarbonCredit) =>
props.setInputs({ ...props.inputs, CarbonCredit: inputs })
Expand All @@ -116,7 +116,7 @@ export const GasificationPower = (props: Props) => {
});
}}
disabled={props.disabled}
></CarbonCreditInput>
></CarbonCreditInput> */}
<EscalationInflationInput
inputs={props.inputs.EscalationInflation}
setInputs={(inputs: EscalationInflationInputModGP) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const CombinedHeatAndPower = (props: Props) => {
}
disabled={props.disabled}
/>
<CarbonCreditInput
{/* <CarbonCreditInput
inputs={props.inputs.CarbonCredit}
setInputs={(inputs: CarbonCredit) =>
props.setInputs({ ...props.inputs, CarbonCredit: inputs })
Expand All @@ -226,7 +226,7 @@ export const CombinedHeatAndPower = (props: Props) => {
});
}}
disabled={props.disabled}
></CarbonCreditInput>
></CarbonCreditInput> */}
<EscalationInflationInput
inputs={props.inputs.EscalationInflation}
setInputs={(inputs: EscalationInflationInputMod) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const GenericPowerOnly = (props: Props) => {
}
disabled={props.disabled}
/>
<CarbonCreditInput
{/* <CarbonCreditInput
inputs={props.inputs.CarbonCredit}
setInputs={(inputs: CarbonCredit) =>
props.setInputs({ ...props.inputs, CarbonCredit: inputs })
Expand All @@ -110,7 +110,7 @@ export const GenericPowerOnly = (props: Props) => {
});
}}
disabled={props.disabled}
></CarbonCreditInput>
></CarbonCreditInput> */}
<EscalationInflationInput
inputs={props.inputs.EscalationInflation}
setInputs={(inputs: EscalationInflationInputMod) =>
Expand Down

0 comments on commit 2bed6bb

Please sign in to comment.