Skip to content

Commit

Permalink
Fixed overflow of event registrants
Browse files Browse the repository at this point in the history
  • Loading branch information
pateldivyesh1323 committed Dec 8, 2023
1 parent 64f3ab3 commit 316e6b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const EventRegistrantsModal = (props: ModalPropType): JSX.Element => {
{attendeesData.event.attendees.length == 0
? `There are no registered attendees for this event.`
: null}
<Stack direction="row" spacing={1}>
<Stack direction="row" spacing={1} className="overflow-auto pb-2">
{attendeesData.event.attendees.map((attendee: InterfaceUser) => (
<Chip
avatar={
Expand Down

0 comments on commit 316e6b8

Please sign in to comment.