Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Reverse rotw check
  • Loading branch information
regalijan committed Feb 22, 2024
1 parent 70d37d7 commit 506f5ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/routes/book-event.tsx
Expand Up @@ -119,14 +119,15 @@ export default function () {
placeholder="For gamenights, provide information about the game and the link. For all other events, type out the fact/question/riddle."
/>
<Heading
display={eventType === "rotw" ? "none" : undefined}
display={eventType === "rotw" ? undefined : "none"}
mb="8px"
pt="16px"
size="md"
>
Riddle Answer
</Heading>
<Input
display={eventType === "rotw" ? undefined : "none"}
onChange={(e) => setRiddleAnswer(e.target.value)}
placeholder="Riddle answer"
/>
Expand Down

0 comments on commit 506f5ec

Please sign in to comment.