From 0aae1efc7e3c00a7b6a22a757d5a4e1e252ed6c9 Mon Sep 17 00:00:00 2001 From: vringar Date: Mon, 17 Jul 2023 21:38:00 +0200 Subject: [PATCH] fix(Explorer): remove console.log Signed-off-by: vringar --- Explorer/src/components/container_detail_page.tsx | 1 - Explorer/src/lib/db.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/Explorer/src/components/container_detail_page.tsx b/Explorer/src/components/container_detail_page.tsx index eb5aec8..fac62a7 100644 --- a/Explorer/src/components/container_detail_page.tsx +++ b/Explorer/src/components/container_detail_page.tsx @@ -221,7 +221,6 @@ function ContainerStatesWidget({ if (state === undefined) { return
; } - console.log(state); let elem: JSX.Element; switch (state.kind) { case "running": diff --git a/Explorer/src/lib/db.ts b/Explorer/src/lib/db.ts index eb40c4e..7da1bbb 100644 --- a/Explorer/src/lib/db.ts +++ b/Explorer/src/lib/db.ts @@ -29,7 +29,6 @@ export async function getContainerDetails( return undefined; } const last_fail_state = await getContainerState(container_row.last_state_id); - console.log(container_row); const container: Container = { id: container_row.id, timestamp: container_row.timestamp, @@ -62,7 +61,6 @@ async function getContainerState( if (!row) { return undefined; } - console.log(row); switch (row.kind) { case "Waiting":