Make booking status always text

This commit is contained in:
Regalijan 2024-01-23 18:46:35 -05:00
parent 7f2db7155e
commit 58f56b7a7d
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -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>