diff --git a/frontend/src/components/MeetingRoom/ParticipantListItemMenu/ParticipantListItemMenu.tsx b/frontend/src/components/MeetingRoom/ParticipantListItemMenu/ParticipantListItemMenu.tsx index 37da99f0..c115aefb 100644 --- a/frontend/src/components/MeetingRoom/ParticipantListItemMenu/ParticipantListItemMenu.tsx +++ b/frontend/src/components/MeetingRoom/ParticipantListItemMenu/ParticipantListItemMenu.tsx @@ -1,6 +1,8 @@ import { useState, MouseEvent, ReactElement } from 'react'; -import { IconButton, Menu } from '@mui/material'; +import { ClickAwayListener, Grow, IconButton, Paper, Popper } from '@mui/material'; import MoreVertIcon from '@mui/icons-material/MoreVert'; +// import { ClickAwayListener, Popper, PopperChildrenProps } from '@mui/base'; +import { PopperChildrenProps } from '@mui/base'; import { SubscriberWrapper } from '../../../types/session'; import ParticipantPinMenuItem from './ParticipantPinMenuItem'; @@ -35,21 +37,36 @@ const ParticipantListItemMenu = ({ - - - + + {({ TransitionProps }: PopperChildrenProps) => ( + +
+ + + + + +
+
+ )} +
); };