Skip to content

Commit

Permalink
Merge pull request #83 from Teammanagers/develop
Browse files Browse the repository at this point in the history
이슈 수정
  • Loading branch information
Low-ProFiles authored Aug 23, 2024
2 parents 08b785d + 6cbd476 commit 0fa50e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/team/team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ export const TeamPage = () => {
<TeamContainer>
<TeamIndexContainer>
{!isLoading &&
team.result.teamList.map((item) => {
team?.result.teamList.map((item) => {
return <SearchTeamSection data={item} />;
})}
<SelectTeamComponent>
{!isLoading && team.result.teamList.length < 5 && (
{!isLoading && team?.result.teamList.length < 5 && (
<>
<TeamLogoComponent onClick={handleClickCreateButton}>
<CreateTeam />
Expand Down

0 comments on commit 0fa50e0

Please sign in to comment.