diff --git a/app/profile/page.tsx b/app/profile/page.tsx index 9485cdf5..895097ab 100644 --- a/app/profile/page.tsx +++ b/app/profile/page.tsx @@ -26,6 +26,7 @@ import { Waitlisted } from "@/components/Profile/RSVP/ModalViews/Rejected"; import Accepted from "@/components/Profile/RSVP/ModalViews/Accepted"; +import CloseButton from "@/components/CloseButton/CloseButton"; type ValueItemProps = { label: string; @@ -136,8 +137,8 @@ const Profile: React.FC = () => { }} ariaHideApp={false} > + setModalOpen(false)} />
- {/* TODO: close button */} void }) => { + return ( + + ); +}; + +export default CloseButton;