hotfix to show the actual fan state on the bin page and not have it hardcoded to on

This commit is contained in:
csawatzky 2026-03-11 11:22:35 -06:00
parent d8512faa35
commit 5c9832b037

View file

@ -1556,7 +1556,7 @@ export default function BinVisualizer(props: Props) {
let device = componentDevices.get(fan.key) let device = componentDevices.get(fan.key)
if(fanComp && device){ if(fanComp && device){
return ( return (
<BinControllerDisplay key={fanComp.key()} component={fanComp} deviceID={device} currentState/> <BinControllerDisplay key={fanComp.key()} component={fanComp} deviceID={device} currentState={fan.state}/>
) )
} }
})} })}