chore: remove unnecessary console log

This commit is contained in:
MystiPanda 2024-07-18 23:37:54 +08:00
parent e749fe70e2
commit dc861eca7d
No known key found for this signature in database
2 changed files with 0 additions and 2 deletions

View File

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

View File

@ -202,7 +202,6 @@ export async function checkService() {
} }
export async function installService(passwd: string) { export async function installService(passwd: string) {
console.log(passwd);
return invoke<void>("install_service", { passwd }); return invoke<void>("install_service", { passwd });
} }