From 34265613b80d1d2249d276da5fcd5e4c274af357 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 14 May 2024 12:16:04 +0700 Subject: feat(ui): add history explore (#2022) * break out HistoryRow, add drawer * syntax highlighting! * smaller text * allow inspecting all old commands, no drag command * fix query bug * add loader --- ui/src/components/history/Stats.tsx | 2 -- 1 file changed, 2 deletions(-) (limited to 'ui/src/components/history/Stats.tsx') diff --git a/ui/src/components/history/Stats.tsx b/ui/src/components/history/Stats.tsx index bc4e5c33..df25d930 100644 --- a/ui/src/components/history/Stats.tsx +++ b/ui/src/components/history/Stats.tsx @@ -20,7 +20,6 @@ function renderLoading() { } function TopTable({ stats }: any) { - console.log(stats); return (
@@ -111,7 +110,6 @@ export default function Stats() { console.log(e); }); }, []); - console.log(top); if (stats.length == 0) { return renderLoading(); -- cgit v1.3.1