diff --git a/heat-stack/app/components/ui/heat/CaseSummaryComponents/Graphs/HeatLoad.tsx b/heat-stack/app/components/ui/heat/CaseSummaryComponents/Graphs/HeatLoad.tsx index f143600..410b207 100644 --- a/heat-stack/app/components/ui/heat/CaseSummaryComponents/Graphs/HeatLoad.tsx +++ b/heat-stack/app/components/ui/heat/CaseSummaryComponents/Graphs/HeatLoad.tsx @@ -73,6 +73,7 @@ type HeatLoadProps = { * @returns {JSX.Element} - The rendered chart component. */ export function HeatLoad({ heatLoadSummaryOutput }: HeatLoadProps) { + console.log('heatLoadSummaryOutput: ', heatLoadSummaryOutput) const designSetPoint = 70 // Design set point is 70°F as described in this document: https://docs.google.com/document/d/16WlqY3ofq4xpalsfwRuYBWMbeUHfXRvbWU69xxVNCGM/edit?tab=t.0 const { whole_home_heat_loss_rate, @@ -237,7 +238,6 @@ export function HeatLoad({ heatLoadSummaryOutput }: HeatLoadProps) { type="number" dataKey="temperature" name="Outdoor Temperature" - unit="°F" domain={[minXValue, maxXValue]} tickCount={maxXValue - minXValue + 1} // Ensure whole numbers > @@ -251,7 +251,6 @@ export function HeatLoad({ heatLoadSummaryOutput }: HeatLoadProps) {