Skip to content

Commit

Permalink
chore: remove unnecessary console log
Browse files Browse the repository at this point in the history
  • Loading branch information
MystiPanda committed Jul 18, 2024
1 parent e749fe7 commit dc861ec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/setting/mods/network-interface-viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export const NetworkInterfaceViewer = forwardRef<DialogRef>((props, ref) => {
useEffect(() => {
if (!open) return;
getNetworkInterfacesInfo().then((res) => {
console.log(res);
setNetworkInterfaces(res);
});
}, [open]);
Expand Down
1 change: 0 additions & 1 deletion src/services/cmds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ export async function checkService() {
}

export async function installService(passwd: string) {
console.log(passwd);
return invoke<void>("install_service", { passwd });
}

Expand Down

0 comments on commit dc861ec

Please sign in to comment.