Merge branch 'main' into HendrikRauh/issue33

This commit is contained in:
Hendrik Rauh 2025-02-16 17:35:17 +01:00 committed by GitHub
commit 34aa221c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 11899 additions and 11901 deletions

View file

@ -20,7 +20,7 @@ refreshButton.addEventListener("click", async () => {
// check if connected via WiFi-Station
if (data.connection === 0) {
// show currently connected wifi
// show currently connected WiFi
insertNetworks([data.ssid]);
}
@ -68,6 +68,6 @@ async function loadNetworks() {
async function updateNetworks() {
const networks = await loadNetworks();
if (networks) {
insertNetworks(["", ...networks], true);
insertNetworks(["", ...networks]);
}
}