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.
1 parent 7fdf689 commit 5c4607dCopy full SHA for 5c4607d
gui/src/components/tracker/TrackerSettings.tsx
@@ -171,10 +171,9 @@ export function TrackerSettingsPage() {
171
tracker?.device?.hardwareInfo &&
172
checkForUpdate(currentFirmwareRelease, tracker?.device);
173
const updateUnavailable =
174
- (
175
- tracker?.device?.hardwareInfo?.officialBoardType !== BoardType.SLIMEVR &&
176
- tracker?.device?.hardwareInfo?.officialBoardType !== BoardType.SLIMEVR_V1_2
177
- ) ||
+ (tracker?.device?.hardwareInfo?.officialBoardType !== BoardType.SLIMEVR &&
+ tracker?.device?.hardwareInfo?.officialBoardType !==
+ BoardType.SLIMEVR_V1_2) ||
178
!semver.valid(
179
tracker?.device?.hardwareInfo?.firmwareVersion?.toString() ?? 'none'
180
);
0 commit comments