diff --git a/pages/bookings/[status].tsx b/pages/bookings/[status].tsx
index 6079889f..02ec6841 100644
--- a/pages/bookings/[status].tsx
+++ b/pages/bookings/[status].tsx
@@ -11,6 +11,12 @@ import BookingListItem from "@components/booking/BookingListItem";
type BookingListingStatus = inferQueryInput<"viewer.bookings">["status"];
+const descriptionByStatus = {
+ upcoming: "As soon as someone books a time with you it will show up here.",
+ past: "Your past bookings will show up here.",
+ cancelled: "Your cancelled bookings will show up here.",
+};
+
export default function Bookings() {
const router = useRouter();
const status = router.query?.status as BookingListingStatus;
@@ -35,13 +41,17 @@ export default function Bookings() {
)}
- empty={() => (
-
- )}
+ empty={
+ status
+ ? () => (
+
+ )
+ : undefined
+ }
/>