Network module rework (#48)

* Fixes #45 - Reworked the network module to be more responsive and added ssid truncation configuration.

* Added truncation options in the defaults.
This commit is contained in:
Jas Singh
2024-07-30 21:51:36 -07:00
committed by GitHub
parent 26f61ed513
commit aae22bef5e
4 changed files with 47 additions and 50 deletions

View File

@@ -39,7 +39,7 @@ const WeatherWidget = () => {
return theWeather.value = parsedWeather;
} catch (error) {
theWeather.value = DEFAULT_WEATHER;
console.error(`Failed to parse weather data: ${error}`);
console.warn(`Failed to parse weather data: ${error}`);
}
})
.catch((err) => {