You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async function _scanStatus() {
let payload = await getStatus();
return {
scanned: payload.scanned || [],
networks:
payload?.networks?.map((net) => ({
...net,
ap: _getApName(net),
bssid: _getBssid(net),
})) || [],
status: payload.status || null,
lock: payload.lock,
};
this type error is associated to an empty list of possible networks to join
After pressing the cancel button the main fbw appears but If I press F5 the fbw disappears again.
The text was updated successfully, but these errors were encountered:
I was unable to get firstbootwizard online.
Am i doing something wrong ?
When i enter the url http://localhost:8080/#/firstbootwizard/scan
I get type error
async function _scanStatus() {
let payload = await getStatus();
return {
scanned: payload.scanned || [],
networks:
payload?.networks?.map((net) => ({
...net,
ap: _getApName(net),
bssid: _getBssid(net),
})) || [],
status: payload.status || null,
lock: payload.lock,
};
this type error is associated to an empty list of possible networks to join
After pressing the cancel button the main fbw appears but If I press F5 the fbw disappears again.
The text was updated successfully, but these errors were encountered: