diff --git a/app/nodes/[node]/qemu/[vmid]/index.tsx b/app/nodes/[node]/qemu/[vmid]/index.tsx index 2c5a4ff..b2858c9 100644 --- a/app/nodes/[node]/qemu/[vmid]/index.tsx +++ b/app/nodes/[node]/qemu/[vmid]/index.tsx @@ -21,8 +21,6 @@ export default function QemuResourcePage() { } }, [qemu]); - console.log({ rddData }); - return ( diff --git a/components/login/index.tsx b/components/login/index.tsx index 17c0fc0..65d4a55 100644 --- a/components/login/index.tsx +++ b/components/login/index.tsx @@ -58,7 +58,6 @@ export default function Login() { authStore.update({ domain, username, ticketData }); }, onError: (error: AxiosError) => { - console.log(error); switch (error.code) { case "ERR_BAD_REQUEST": setError("Invalid username or password");