From 0f430af87727b0cca43f60398bfb6c8b20265b48 Mon Sep 17 00:00:00 2001 From: "matthias.lotz" Date: Sat, 8 Nov 2025 12:43:34 +0100 Subject: [PATCH] fix(frontend): Disable exhaustive-deps warning for DeletionLogPage useEffect --- frontend/src/Components/Pages/DeletionLogPage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/Components/Pages/DeletionLogPage.js b/frontend/src/Components/Pages/DeletionLogPage.js index 1457e1f..bd4ae29 100644 --- a/frontend/src/Components/Pages/DeletionLogPage.js +++ b/frontend/src/Components/Pages/DeletionLogPage.js @@ -33,6 +33,7 @@ const DeletionLogPage = () => { useEffect(() => { loadDeletionLog(); loadStatistics(); + // eslint-disable-next-line react-hooks/exhaustive-deps }, [showAll]); const loadDeletionLog = async () => {