Skip to content

Commit

Permalink
fix: clarify shipping firmware version check in Controller component
Browse files Browse the repository at this point in the history
  • Loading branch information
jLynx committed Dec 28, 2024
1 parent e107e72 commit 680524e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Controller/Controller.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ const Controller = () => {
stableVersionFormat(deviceVersion) !== 2) ||
(getVersionType(deviceVersion) === "stable" &&
stableVersionFormat(deviceVersion) < 200 &&
stableVersionFormat(deviceVersion) !== 2) ? (
stableVersionFormat(deviceVersion) !== 2) ? ( // This check is for the shipping firmware version
<p>
Sorry, your firmware version is too old to support this feature.
Please manually update to the latest stable or nightly build!
Expand Down

0 comments on commit 680524e

Please sign in to comment.