From dd2edf95bba0b3544797eccc439aac0a8efe7856 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Mon, 8 Sep 2025 16:35:24 -0400 Subject: [PATCH] Working on getting CSS factored out. Signed-off-by: Cliff Hill --- frontend/src/components/BookingList.tsx | 3 ++- frontend/src/pages/LandingPage.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/BookingList.tsx b/frontend/src/components/BookingList.tsx index 86be88f2..c82e1be0 100644 --- a/frontend/src/components/BookingList.tsx +++ b/frontend/src/components/BookingList.tsx @@ -9,12 +9,13 @@ import React from "react"; import { List, Typography, ListItemButton } from "@mui/material"; -import type { BookingListProps } from "../schemas"; +// ...existing code... import { sortBookingsByStartTime, formatBookingTime, getInviteeName, } from "../helpers/bookingList"; +import type { BookingListProps } from "../schemas"; /** * BookingList component. diff --git a/frontend/src/pages/LandingPage.tsx b/frontend/src/pages/LandingPage.tsx index adf22621..e04c5dcd 100644 --- a/frontend/src/pages/LandingPage.tsx +++ b/frontend/src/pages/LandingPage.tsx @@ -25,7 +25,7 @@ import BookingList from "../components/BookingList"; import type { ConferenceRoom } from "../schemas"; import type { Booking } from "../schemas"; import EventNoteIcon from "@mui/icons-material/EventNote"; -import "./LandingPage.css"; +// import "./LandingPage.css"; import { logger } from "../utils/logger"; /**