Skip to content

Commit

Permalink
fix(web-domains): 모임원이 없다는 EmptyView로 인해 클릭이 되지 않는 문제를 수정합니다 (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
Doeunnkimm authored Sep 12, 2024
1 parent f2dc34a commit 99147bc
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,7 @@ export const GatherMemberProfileListContainer = () => {
} = useGatherMemberProfileListService();

if (!gatherMemberList.length) {
return (
<EmptyView
title="아직 입장한 모임원이 없어요!"
css={{ position: 'absolute', top: '50%', left: '50%', transform: 'translate(-50%,-50%)' }}
/>
);
return <EmptyView title="아직 입장한 모임원이 없어요!" />;
}

return (
Expand Down

0 comments on commit 99147bc

Please sign in to comment.