From 58f56b7a7df400a3bf217b278b5614485b065049 Mon Sep 17 00:00:00 2001 From: Regalijan 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 () { } spacing={4}> FACT OF THE DAY - {fotd ? Booked : Book} + {fotd ? "" : "Not"} Booked GAMENIGHT - {gamenight ? Booked : Book} + {gamenight ? "" : "Not"} Booked QUESTION OF THE DAY - {qotd ? Booked : Book} + {qotd ? "" : "Not"} Booked