Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't check for unsolved riddles on outstanding events page
  • Loading branch information
regalijan committed Nov 20, 2024
1 parent ee7b549 commit dd7c537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/events-team_.outstanding.tsx
Expand Up @@ -38,7 +38,7 @@ export async function loader({ context }: { context: RequestContext }) {
}

const data = await context.env.D1.prepare(
"SELECT day, details, id FROM events WHERE approved = 1 AND month = ? AND year = ? AND (performed_at IS NULL OR reached_minimum_player_count = 0 OR answered_at IS NULL);",
"SELECT day, details, id FROM events WHERE approved = 1 AND month = ? AND year = ? AND (performed_at IS NULL OR reached_minimum_player_count = 0);",
)
.bind(month, year)
.all();
Expand Down

0 comments on commit dd7c537

Please sign in to comment.