Skip to content

Commit

Permalink
fix: 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Low-ProFiles committed Aug 23, 2024
1 parent 1e0a147 commit b0f3ae7
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 b0f3ae7

Please sign in to comment.