chore: remove unnecessary console log

This commit is contained in:
MystiPanda
2024-07-18 23:37:54 +08:00
parent e749fe70e2
commit dc861eca7d
2 changed files with 0 additions and 2 deletions

View File

@@ -24,7 +24,6 @@ export const NetworkInterfaceViewer = forwardRef<DialogRef>((props, ref) => {
useEffect(() => {
if (!open) return;
getNetworkInterfacesInfo().then((res) => {
console.log(res);
setNetworkInterfaces(res);
});
}, [open]);