We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d44f5ca + ffe06e3 commit a807941Copy full SHA for a807941
web/src/TacComponents.tsx
@@ -570,7 +570,7 @@ export function OverTemperatureNotification() {
570
<Alert
571
statusIconAriaLabel="Warning"
572
type="warning"
573
- visible={warning !== null && warning !== "Okay"}
+ visible={warning !== undefined && warning !== "Okay"}
574
header="Your LXA TAC is overheating"
575
>
576
The LXA TAC's temperature is{" "}
@@ -608,7 +608,7 @@ export function UsbOverloadNotification() {
608
609
610
611
- visible={overload !== null}
+ visible={overload !== undefined && overload !== null}
612
header={header}
613
614
Disconnect {detail} or use a powered hub to resolve this issue.
0 commit comments