Skip to content

Commit

Permalink
fix: update status value
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Jan 20, 2025
1 parent abbfc71 commit 450ade6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/probe-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const getProbeStatus = (probe: Probe) => {
&& (isOutdated(probe.hardwareDeviceFirmware, metadata.targetHardwareDeviceFirmware)
|| isOutdated(probe.nodeVersion, metadata.targetNodeVersion)
)) {
return 'Ready (outdated)';
return 'ready (outdated)';
}

return probe.status;
Expand Down

0 comments on commit 450ade6

Please sign in to comment.