Skip to content

Commit

Permalink
Fix temperature alert check in AlertsModal.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Aug 31, 2024
1 parent 46a77d5 commit 3cb7fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LVMWebRoot/AlertsModal/AlertsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function AlertsModal(props: AlertsModalProps) {

const tempAlerts: string[] = [];

if (alerts.temperature_alert) {
if (alerts.camera_temperature_alert) {
tempAlerts.push('Spectrograph temperature alert');
}

Expand Down

0 comments on commit 3cb7fae

Please sign in to comment.