From 58f56b7a7df400a3bf217b278b5614485b065049 Mon Sep 17 00:00:00 2001
From: Regalijan <r@regalijan.com>
Date: Tue, 23 Jan 2024 18:46:35 -0500
Subject: [PATCH] Make booking status always text

---
 app/routes/events-team.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/routes/events-team.tsx b/app/routes/events-team.tsx
index 945a052..cbd7ef4 100644
--- a/app/routes/events-team.tsx
+++ b/app/routes/events-team.tsx
@@ -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>