Make booking status always text
This commit is contained in:
parent
7f2db7155e
commit
58f56b7a7d
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user