swapped from error to log

This commit is contained in:
JackTheRooster 2025-02-26 17:02:12 -06:00
parent 5dedda7ad7
commit 6d11eb544f
1 changed files with 1 additions and 1 deletions
ui/src/components/sidebar

View File

@ -135,7 +135,7 @@ export default function SettingsSidebar() {
if ("error" in resp) {
console.error("Failed to load USB Config:", resp.error);
} else {
console.error("syncUsbConfigProduct#getUsbConfig result:", resp.result);
console.log("syncUsbConfigProduct#getUsbConfig result:", resp.result);
const usbConfigState = resp.result as UsbConfigState
setUsbConfigProduct(usbConfigState.product);
}