Reverse rotw check

This commit is contained in:
Regalijan 2024-02-22 13:06:44 -05:00
parent 70d37d76d3
commit 506f5ec99c
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -119,7 +119,7 @@ export default function () {
placeholder="For gamenights, provide information about the game and the link. For all other events, type out the fact/question/riddle." placeholder="For gamenights, provide information about the game and the link. For all other events, type out the fact/question/riddle."
/> />
<Heading <Heading
display={eventType === "rotw" ? "none" : undefined} display={eventType === "rotw" ? undefined : "none"}
mb="8px" mb="8px"
pt="16px" pt="16px"
size="md" size="md"
@ -127,6 +127,7 @@ export default function () {
Riddle Answer Riddle Answer
</Heading> </Heading>
<Input <Input
display={eventType === "rotw" ? undefined : "none"}
onChange={(e) => setRiddleAnswer(e.target.value)} onChange={(e) => setRiddleAnswer(e.target.value)}
placeholder="Riddle answer" placeholder="Riddle answer"
/> />