Skip to content

Commit

Permalink
feat: detail페이지의 사용자 참석 리스트를 드래그하지 못하도록 수정 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
geongyu09 authored May 3, 2024
2 parents 6078099 + e5ada64 commit 483ca43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FE/src/components/common/MemberList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const MemberList = ({ members, blur = false }: MemberListProps) => {

const MemberListItem = ({ name }: Omit<SimpleMemberInfo, "memberId">) => {
return (
<div className="grid w-fit grid-cols-1 justify-items-center px-4 py-6 text-lg">
<div className="grid w-fit cursor-default select-none grid-cols-1 justify-items-center px-4 py-6 text-lg">
<span>{name}</span>
</div>
);
Expand Down

0 comments on commit 483ca43

Please sign in to comment.