cleaned up logging

This commit is contained in:
Adrian 2025-01-25 18:25:36 -06:00
parent 621c333041
commit 682b5911e8
1 changed files with 0 additions and 2 deletions

View File

@ -94,7 +94,6 @@ function UpdateUsbConfigModal({
if ("error" in resp) {
console.error("Failed to load USB Config:", resp.error);
} else {
console.info("Successfully synced USB Config: ", resp.result);
setUsbConfigState(resp.result as UsbConfigState);
}
});
@ -119,7 +118,6 @@ function UpdateUsbConfigModal({
const handleUsbManufacturer = (value: string) => {
setUsbConfig({... usbConfig, manufacturer: value})
console.log(`usbConfig: ${usbConfig}`)
};
const handleUsbProduct = (value: string) => {