From b8f45492a42f1caf7bff815d7b5b43c4a64cab7c Mon Sep 17 00:00:00 2001
From: niku <nvdpoel01@gmail.com>
Date: Sat, 10 Jun 2023 22:24:52 +0200
Subject: [PATCH] Bye bye console.log

---
 app/nodes/[node]/qemu/[vmid]/index.tsx | 2 --
 components/login/index.tsx             | 1 -
 2 files changed, 3 deletions(-)

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 (
     <ScrollView>
       <Card>
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");