Skip to content

Commit

Permalink
fix(Explorer): remove console.log
Browse files Browse the repository at this point in the history
Signed-off-by: vringar <zabka@campus.tu-berlin.de>
  • Loading branch information
vringar committed Jul 17, 2023
1 parent d7257ac commit 0aae1ef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion Explorer/src/components/container_detail_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ function ContainerStatesWidget({
if (state === undefined) {
return <div></div>;
}
console.log(state);
let elem: JSX.Element;
switch (state.kind) {
case "running":
Expand Down
2 changes: 0 additions & 2 deletions Explorer/src/lib/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -62,7 +61,6 @@ async function getContainerState(
if (!row) {
return undefined;
}
console.log(row);

switch (row.kind) {
case "Waiting":
Expand Down

0 comments on commit 0aae1ef

Please sign in to comment.