Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/#139: 참여자 체크인 및 관리자 호출할 수 있는 페이지 추가 #140

Merged
merged 13 commits into from
Sep 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Design: 콘텐츠의 가로 크기 사이즈 변경
  • Loading branch information
pp449 committed Sep 12, 2023
commit 4c07ab8d0dd0b9afef6d20afd9f211715d70b187
5 changes: 2 additions & 3 deletions src/components/RoundCheckIn/PlayerLists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const PlayerLists = () => {

const fetchData = async (matchId: string) => {
const res = await authAPI({ method: 'get', url: `/api/match/${matchId}/player/info` });
console.log('res', res);
if (res.status !== 200) return;
setPlayers(res.data.matchPlayerScoreInfos);
};
Expand Down Expand Up @@ -56,7 +55,7 @@ export default PlayerLists;
const Container = styled.div`
display: flex;
flex-direction: column;
width: 60%;
width: 70%;
`;

const MenuList = styled.ul`
Expand All @@ -68,7 +67,7 @@ const MenuList = styled.ul`
padding: 1rem 0 1rem;
margin-bottom: 0.5rem;

&: first-child {
&: first-of-type {
color: #97a1af;
margin-bottom: 1rem;
}
Expand Down