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"; /**