Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make booking status always text
  • Loading branch information
regalijan committed Jan 23, 2024
1 parent 7f2db71 commit 58f56b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/routes/events-team.tsx
Expand Up @@ -61,15 +61,15 @@ export default function () {
<Stack divider={<StackDivider />} spacing={4}>
<Box>
<Heading size="xs">FACT OF THE DAY</Heading>
{fotd ? <Text pt="2">Booked</Text> : <Link>Book</Link>}
<Text pt="2">{fotd ? "" : "Not"} Booked</Text>
</Box>
<Box>
<Heading size="xs">GAMENIGHT</Heading>
{gamenight ? <Text pt="2">Booked</Text> : <Link>Book</Link>}
<Text pt="2">{gamenight ? "" : "Not"} Booked</Text>
</Box>
<Box>
<Heading size="xs">QUESTION OF THE DAY</Heading>
{qotd ? <Text pt="2">Booked</Text> : <Link>Book</Link>}
<Text pt="2">{qotd ? "" : "Not"} Booked</Text>
</Box>
</Stack>
</CardBody>
Expand Down

0 comments on commit 58f56b7

Please sign in to comment.