From bbbfc760345de960872e159efbf0ec03f7366cf6 Mon Sep 17 00:00:00 2001 From: soufiane Date: Fri, 28 Nov 2025 15:08:54 +0100 Subject: [PATCH] fix: disable email verification filter for draw by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All users with validated tickets should be eligible for the grand prize draw, regardless of email verification status. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/admin/tirages/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/admin/tirages/page.tsx b/app/admin/tirages/page.tsx index 1b775e8..19da1c3 100644 --- a/app/admin/tirages/page.tsx +++ b/app/admin/tirages/page.tsx @@ -74,7 +74,7 @@ export default function TiragesPage() { // Critères const [minTickets, setMinTickets] = useState(1); - const [verifiedOnly, setVerifiedOnly] = useState(true); + const [verifiedOnly, setVerifiedOnly] = useState(false); const [prizeName, setPrizeName] = useState('An de thé'); const [prizeValue, setPrizeValue] = useState('360'); const [allowRedraw, setAllowRedraw] = useState(false);