From d7812c28c6d0bb5351c43ec1cbba192aaab8c757 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 14 Dec 2023 14:48:01 -0700 Subject: [PATCH] Lint fixes --- web-new/src/pages/History.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web-new/src/pages/History.tsx b/web-new/src/pages/History.tsx index 0e671b75d..8dd686b31 100644 --- a/web-new/src/pages/History.tsx +++ b/web-new/src/pages/History.tsx @@ -39,7 +39,6 @@ function History() { const { data: timelinePages, - mutate, size, setSize, isValidating, @@ -52,7 +51,7 @@ function History() { { revalidateOnFocus: false } ); - const [detailLevel, setDetailLevel] = useState<"normal" | "extra" | "full">( + const [detailLevel, _] = useState<"normal" | "extra" | "full">( "normal" ); const [playback, setPlayback] = useState();