tidy up comments

This commit is contained in:
proddy
2026-04-27 11:08:52 +02:00
parent 1cff1abc33
commit 7c6259dddd
3 changed files with 3 additions and 9 deletions

View File

@@ -482,10 +482,8 @@ const Version = () => {
{ immediate: false }
);
// Fetch latest stable/dev versions via the device. The ESP32 calls
// emsesp.org/versions.json itself and includes its own `current` info plus
// upgradeable flags. If the device has no internet, `stable`/`dev` are
// absent and we surface that as "internet not live".
// fetch latest stable/dev versions via the device. The C++ code makes a call to emsesp.org/versions.json itself
// if the device has no internet, stable/dev are omitted and the internetLive flag is set to false
useRequest(() => callAction({ action: 'getVersions' }))
.onSuccess((event) => {
const versions = event.data as VersionsResponse;