hotifx: added more snackbars and some details to help debug reon

This commit is contained in:
Carter 2025-12-22 20:49:54 -06:00
parent 8238c4df58
commit 128a06e0a0
3 changed files with 12 additions and 5 deletions

View file

@ -158,9 +158,9 @@ export default function DevicePage() {
if (length > 0) {
warningString = warningString + " through " + getContextTypes()[length - 1];
}
snackbar.warning(warningString);
snackbar.warning("page data warning: "+warningString);
} else {
snackbar.error(err);
snackbar.error("page data error: "+err);
}
})
.finally(() => setLoading(false));
@ -174,7 +174,7 @@ export default function DevicePage() {
}
})
.catch(err => {
console.log(err)
console.log("load port scan: "+err)
})
}