From 86f3349f80832cd6d3154fed5919b669e319318f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Thu, 4 Dec 2025 13:40:23 +0100 Subject: [PATCH] Fix duplicate toggleUploadSpecial definition in curator client --- app/curator/CuratorPageClient.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/curator/CuratorPageClient.tsx b/app/curator/CuratorPageClient.tsx index aef0fc4..b9ca57a 100644 --- a/app/curator/CuratorPageClient.tsx +++ b/app/curator/CuratorPageClient.tsx @@ -541,12 +541,6 @@ export default function CuratorPageClient() { ); }; -const toggleUploadSpecial = (specialId: number) => { - setUploadSpecialIds(prev => - prev.includes(specialId) ? prev.filter(id => id !== specialId) : [...prev, specialId] - ); -}; - const handleFileChange = (e: React.ChangeEvent) => { const selected = Array.from(e.target.files || []); if (selected.length === 0) return;