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."
/>
<Heading
display={eventType === "rotw" ? "none" : undefined}
display={eventType === "rotw" ? undefined : "none"}
mb="8px"
pt="16px"
size="md"
@ -127,6 +127,7 @@ export default function () {
Riddle Answer
</Heading>
<Input
display={eventType === "rotw" ? undefined : "none"}
onChange={(e) => setRiddleAnswer(e.target.value)}
placeholder="Riddle answer"
/>