aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/components/history/Stats.tsx
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-05-14 12:16:04 +0700
committerGitHub <noreply@github.com>2024-05-14 12:16:04 +0700
commit34265613b80d1d2249d276da5fcd5e4c274af357 (patch)
tree0993650d0a8475f37dfdb8ead5491ee5d196f00e /ui/src/components/history/Stats.tsx
parentfix: alias enable/enabled in settings (#2021) (diff)
downloadatuin-34265613b80d1d2249d276da5fcd5e4c274af357.zip
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
Diffstat (limited to 'ui/src/components/history/Stats.tsx')
-rw-r--r--ui/src/components/history/Stats.tsx2
1 files changed, 0 insertions, 2 deletions
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 (
<div className="px-4 sm:px-6 lg:px-8">
<div className="flex items-center">
@@ -111,7 +110,6 @@ export default function Stats() {
console.log(e);
});
}, []);
- console.log(top);
if (stats.length == 0) {
return renderLoading();