fix: disable email verification filter for draw by default

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 <noreply@anthropic.com>
This commit is contained in:
soufiane 2025-11-28 15:08:54 +01:00
parent dce1559a32
commit bbbfc76034

View File

@ -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);