fix(frontend): Disable exhaustive-deps warning for DeletionLogPage useEffect

This commit is contained in:
Matthias Lotz 2025-11-08 12:43:34 +01:00
parent e7da188967
commit 0f430af877

View File

@ -33,6 +33,7 @@ const DeletionLogPage = () => {
useEffect(() => {
loadDeletionLog();
loadStatistics();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [showAll]);
const loadDeletionLog = async () => {